mirror of
https://code.mensbeam.com/MensBeam/Arsse.git
synced 2024-12-22 21:22:40 +00:00
29fb134633
This sorts out HTTP servers, hopefully. Adaptation for systemd and documentation are still required
26 lines
543 B
Bash
26 lines
543 B
Bash
#!/usr/bin/env bash
|
|
|
|
readonly default_php="/usr/bin/php"
|
|
php=""
|
|
|
|
check_sudo() {
|
|
if ! command -v sudo > /dev/null; then
|
|
printf "The sudo command is not available.\n"
|
|
exit 1
|
|
fi
|
|
}
|
|
|
|
# allow overriding the php executable
|
|
if [[ -n "${ARSSE_PHP}" ]] && command -v "${ARSSE_PHP}" > /dev/null; then
|
|
php="${ARSSE_PHP}"
|
|
else
|
|
php="${default_php}"
|
|
fi
|
|
|
|
if [[ "${UID}" -eq 0 ]]; then
|
|
runuser -u "arsse" -- "$php" /usr/share/webapps/arsse/arsse.php "$@"
|
|
else
|
|
check_sudo
|
|
sudo -u "arsse" "$php" /usr/share/webapps/arsse/arsse.php "$@"
|
|
fi
|
|
|