The clean & modern RSS server that doesn't give you any crap. https://thearsse.com/
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

10 lines
287 B

#! /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