This repository has been archived by the owner on May 13, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Conform setup metadata, copyright headers to repository policy.
- Loading branch information
0 parents
commit 2d45bbc
Showing
2 changed files
with
76 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
############################################################################## | ||
# | ||
# Copyright (c) 2001, 2002 Zope Foundation and Contributors. | ||
# All Rights Reserved. | ||
# | ||
# This software is subject to the provisions of the Zope Public License, | ||
# Version 2.1 (ZPL). A copy of the ZPL should accompany this distribution. | ||
# THIS SOFTWARE IS PROVIDED "AS IS" AND ANY AND ALL EXPRESS OR IMPLIED | ||
# WARRANTIES ARE DISCLAIMED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED | ||
# WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND FITNESS | ||
# FOR A PARTICULAR PURPOSE. | ||
# | ||
############################################################################## | ||
|
||
from _initgroups import initgroups |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,61 @@ | ||
/***************************************************************************** | ||
Copyright (c) 2002 Zope Foundation and Contributors. | ||
This software is subject to the provisions of the Zope Public License, | ||
Version 2.1 (ZPL). A copy of the ZPL should accompany this distribution. | ||
THIS SOFTWARE IS PROVIDED "AS IS" AND ANY AND ALL EXPRESS OR IMPLIED | ||
WARRANTIES ARE DISCLAIMED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED | ||
WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND FITNESS | ||
FOR A PARTICULAR PURPOSE | ||
****************************************************************************/ | ||
|
||
#include "Python.h" | ||
|
||
#if defined(__unix__) || defined(unix) || defined(__NetBSD__) || defined(__MACH__) /* Mac OS X */ | ||
|
||
#include <grp.h> | ||
#include <sys/types.h> | ||
#include <unistd.h> | ||
|
||
static PyObject * | ||
initgroups_initgroups(PyObject *self, PyObject *args) | ||
{ | ||
char *username; | ||
unsigned int igid; | ||
gid_t gid; | ||
|
||
if (!PyArg_ParseTuple(args, "sI:initgroups", &username, &igid)) | ||
return NULL; | ||
|
||
gid = igid; | ||
|
||
if (initgroups(username, gid) == -1) | ||
return PyErr_SetFromErrno(PyExc_OSError); | ||
|
||
Py_INCREF(Py_None); | ||
return Py_None; | ||
} | ||
|
||
static PyMethodDef InitgroupsMethods[] = { | ||
{"initgroups", initgroups_initgroups, METH_VARARGS}, | ||
{NULL, NULL} | ||
}; | ||
|
||
#else | ||
|
||
/* This module is empty on non-UNIX systems. */ | ||
|
||
static PyMethodDef InitgroupsMethods[] = { | ||
{NULL, NULL} | ||
}; | ||
|
||
#endif /* defined(__unix__) || defined(unix) */ | ||
|
||
void | ||
init_initgroups(void) | ||
{ | ||
Py_InitModule("_initgroups", InitgroupsMethods); | ||
} | ||
|