Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,10 +33,10 @@ Run these steps once per environment after `pip install`:

```bash
# Compile the pywrapper C binary (once per environment):
pywrapper-install --user gdexdata
pywrapper-install -u gdexdata

# Wire up dsarch as a setuid entry:
pywrapper-install --link dsarch --user gdexdata
pywrapper-install -l dsarch -u gdexdata
```

`pywrapper-install` with no arguments displays the full user guide.
Expand All @@ -46,7 +46,7 @@ pywrapper-install --link dsarch --user gdexdata
Users who do not need the setuid mechanism can create a direct symlink instead:

```bash
pywrapper-install --link dsarch --simple
pywrapper-install -l dsarch -s
```

This creates `bin/dsarch -> bin/setuid_dsarch` and the program runs as the
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "rda_python_dsarch"
version = "2.0.17"
version = "2.0.18"
authors = [
{ name="Zaihua Ji", email="zji@ucar.edu" },
]
Expand Down
6 changes: 3 additions & 3 deletions src/rda_python_dsarch/dsarch_setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,15 +45,15 @@
------------------------------------------------------

# Compile the pywrapper C binary (once per environment):
pywrapper-install --user gdexdata
pywrapper-install -u gdexdata

# Wire up dsarch as a setuid entry:
pywrapper-install --link dsarch --user gdexdata
pywrapper-install -l dsarch -u gdexdata

Simple Install (no sudo required, runs as current user)
-------------------------------------------------------

pywrapper-install --link dsarch --simple
pywrapper-install -l dsarch -s

This creates bin/dsarch -> bin/setuid_dsarch.
The program runs as the current user with no privilege change.
Expand Down
Loading