1
1
Fork 0
mirror of https://code.mensbeam.com/MensBeam/Arsse.git synced 2024-12-23 05:34:55 +00:00
Arsse/dist/arch/arsse.sh
J. King 7ba4cabdde Prototype Arch PKGBUILD and supporting files
The package will be created, but the result itself has yet to be tested.
2021-05-15 22:26:06 -04:00

10 lines
287 B
Bash

#! /usr/bin/bash
if [ `id -u` -eq 0 ]; then
setpriv --clear-groups --inh-caps -all --egid=arsse --euid=arsse php /usr/share/webapps/arsse/arsse.php $@
elif [ `id -un` == "arsse" ]; then
php /usr/share/webapps/arsse/arsse.php $@
else
echo "Not authorized." >&2
exit 1
fi