rda-python-setuid 1.0.5__tar.gz → 1.0.6__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {rda_python_setuid-1.0.5/src/rda_python_setuid.egg-info → rda_python_setuid-1.0.6}/PKG-INFO +1 -1
- {rda_python_setuid-1.0.5 → rda_python_setuid-1.0.6}/pyproject.toml +1 -1
- {rda_python_setuid-1.0.5 → rda_python_setuid-1.0.6}/src/rda_python_setuid/install.py +6 -6
- {rda_python_setuid-1.0.5 → rda_python_setuid-1.0.6}/src/rda_python_setuid/install.usg +7 -6
- {rda_python_setuid-1.0.5 → rda_python_setuid-1.0.6/src/rda_python_setuid.egg-info}/PKG-INFO +1 -1
- {rda_python_setuid-1.0.5 → rda_python_setuid-1.0.6}/LICENSE +0 -0
- {rda_python_setuid-1.0.5 → rda_python_setuid-1.0.6}/MANIFEST.in +0 -0
- {rda_python_setuid-1.0.5 → rda_python_setuid-1.0.6}/README.md +0 -0
- {rda_python_setuid-1.0.5 → rda_python_setuid-1.0.6}/setup.cfg +0 -0
- {rda_python_setuid-1.0.5 → rda_python_setuid-1.0.6}/src/rda_python_setuid/__init__.py +0 -0
- {rda_python_setuid-1.0.5 → rda_python_setuid-1.0.6}/src/rda_python_setuid/pgstart.py +0 -0
- {rda_python_setuid-1.0.5 → rda_python_setuid-1.0.6}/src/rda_python_setuid/pywrapper.c +0 -0
- {rda_python_setuid-1.0.5 → rda_python_setuid-1.0.6}/src/rda_python_setuid/pywrapper.py +0 -0
- {rda_python_setuid-1.0.5 → rda_python_setuid-1.0.6}/src/rda_python_setuid.egg-info/SOURCES.txt +0 -0
- {rda_python_setuid-1.0.5 → rda_python_setuid-1.0.6}/src/rda_python_setuid.egg-info/dependency_links.txt +0 -0
- {rda_python_setuid-1.0.5 → rda_python_setuid-1.0.6}/src/rda_python_setuid.egg-info/entry_points.txt +0 -0
- {rda_python_setuid-1.0.5 → rda_python_setuid-1.0.6}/src/rda_python_setuid.egg-info/requires.txt +0 -0
- {rda_python_setuid-1.0.5 → rda_python_setuid-1.0.6}/src/rda_python_setuid.egg-info/top_level.txt +0 -0
- {rda_python_setuid-1.0.5 → rda_python_setuid-1.0.6}/tests/test_setuid.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: rda_python_setuid
|
|
3
|
-
Version: 1.0.
|
|
3
|
+
Version: 1.0.6
|
|
4
4
|
Summary: RDA Python Package to setuid for program executions as an effective or common user
|
|
5
5
|
Author-email: Zaihua Ji <zji@ucar.edu>
|
|
6
6
|
Project-URL: Homepage, https://github.com/NCAR/rda-python-setuid
|
|
@@ -12,16 +12,16 @@
|
|
|
12
12
|
#
|
|
13
13
|
# Usage:
|
|
14
14
|
# # 1. Compile and install pywrapper (run once per environment):
|
|
15
|
-
# pywrapper-install [-u gdexdata] [-e $ENVHOME
|
|
15
|
+
# pywrapper-install [-u gdexdata] [-e $ENVHOME]
|
|
16
16
|
#
|
|
17
17
|
# # 2. Create pgstart_USER entry so USER can run commands as themselves:
|
|
18
|
-
# pywrapper-install -p [-u zji] [-e $ENVHOME
|
|
18
|
+
# pywrapper-install -p [-u zji] [-e $ENVHOME]
|
|
19
19
|
#
|
|
20
20
|
# # 3. Create a symlink so a program runs as CommonUser via pywrapper (setuid):
|
|
21
|
-
# pywrapper-install -l myprog [-u gdexdata] [-e $ENVHOME
|
|
21
|
+
# pywrapper-install -l myprog [-u gdexdata] [-e $ENVHOME]
|
|
22
22
|
#
|
|
23
23
|
# # 4. Simple install: symlink PROGRAM -> setuid_PROGRAM (no setuid, runs as current user):
|
|
24
|
-
# pywrapper-install -l myprog -s [-e $ENVHOME
|
|
24
|
+
# pywrapper-install -l myprog -s [-e $ENVHOME]
|
|
25
25
|
#
|
|
26
26
|
# Convention for wrapped programs:
|
|
27
27
|
# The target package must register its connector entry point with a setuid_ prefix:
|
|
@@ -73,7 +73,7 @@ def main():
|
|
|
73
73
|
)
|
|
74
74
|
parser.add_argument(
|
|
75
75
|
'-e', '--envhome', default=None,
|
|
76
|
-
help="Path to the venv bin/
|
|
76
|
+
help="Path to the venv root directory containing bin/ (default: parent of the current Python executable's bin/ dir)"
|
|
77
77
|
)
|
|
78
78
|
parser.add_argument(
|
|
79
79
|
'-u', '--user', default=None,
|
|
@@ -101,7 +101,7 @@ def main():
|
|
|
101
101
|
else:
|
|
102
102
|
args.user = 'gdexdata'
|
|
103
103
|
|
|
104
|
-
bindir = args.envhome
|
|
104
|
+
bindir = os.path.join(args.envhome, 'bin') if args.envhome else get_bindir()
|
|
105
105
|
pywrapper = os.path.join(bindir, 'pywrapper')
|
|
106
106
|
|
|
107
107
|
if args.link:
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
that execute Python scripts as a common or effective user via the setuid mechanism.
|
|
3
3
|
Must be run inside the target Python virtual environment.
|
|
4
4
|
|
|
5
|
-
Usage: pywrapper-install [-u USER] [-e
|
|
5
|
+
Usage: pywrapper-install [-u USER] [-e ENVHOME] [-p | -l PROGRAM [-s]]
|
|
6
6
|
|
|
7
7
|
- Option -u or --user USER
|
|
8
8
|
The user name to own the setuid binary. For Mode 1 (CommonUser program),
|
|
@@ -10,10 +10,11 @@
|
|
|
10
10
|
the specialist user (e.g. zji). Defaults to 'gdexdata' unless -p/--pgstart
|
|
11
11
|
is given, in which case it defaults to the current login user.
|
|
12
12
|
|
|
13
|
-
- Option -e or --envhome
|
|
14
|
-
Path to the venv
|
|
15
|
-
currently active Python executable
|
|
16
|
-
environment other than the one
|
|
13
|
+
- Option -e or --envhome ENVHOME
|
|
14
|
+
Path to the venv root directory (the parent of bin/). Defaults to the
|
|
15
|
+
parent of the currently active Python executable's bin/ directory.
|
|
16
|
+
Only needed when installing into an environment other than the one
|
|
17
|
+
currently active.
|
|
17
18
|
|
|
18
19
|
- Option -p or --pgstart
|
|
19
20
|
Mode 2: copy the compiled pywrapper binary to pgstart_USER (owned by USER,
|
|
@@ -120,7 +121,7 @@
|
|
|
120
121
|
pywrapper-install
|
|
121
122
|
|
|
122
123
|
2. Same, but targeting a specific environment:
|
|
123
|
-
pywrapper-install -e /glade/u/home/gdexdata/gdexmsenv
|
|
124
|
+
pywrapper-install -e /glade/u/home/gdexdata/gdexmsenv
|
|
124
125
|
|
|
125
126
|
3. Wire up dsarch to run as gdexdata via pywrapper:
|
|
126
127
|
pywrapper-install -l dsarch
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: rda_python_setuid
|
|
3
|
-
Version: 1.0.
|
|
3
|
+
Version: 1.0.6
|
|
4
4
|
Summary: RDA Python Package to setuid for program executions as an effective or common user
|
|
5
5
|
Author-email: Zaihua Ji <zji@ucar.edu>
|
|
6
6
|
Project-URL: Homepage, https://github.com/NCAR/rda-python-setuid
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{rda_python_setuid-1.0.5 → rda_python_setuid-1.0.6}/src/rda_python_setuid.egg-info/SOURCES.txt
RENAMED
|
File without changes
|
|
File without changes
|
{rda_python_setuid-1.0.5 → rda_python_setuid-1.0.6}/src/rda_python_setuid.egg-info/entry_points.txt
RENAMED
|
File without changes
|
{rda_python_setuid-1.0.5 → rda_python_setuid-1.0.6}/src/rda_python_setuid.egg-info/requires.txt
RENAMED
|
File without changes
|
{rda_python_setuid-1.0.5 → rda_python_setuid-1.0.6}/src/rda_python_setuid.egg-info/top_level.txt
RENAMED
|
File without changes
|
|
File without changes
|