aports/main/fcgiwrap/fcgiwrap.initd
para e14724d1a7 main/fcgiwrap: add user and group options in /etc/conf.d/fcgiwrap
currently main/fcgiwrap hard-codes the user and group it runs as in
/etc/init.d/fcgiwrap. this commit tweaks the init and conf files so that
it is possible to run fcgiwrap as a custom user and group.
2025-09-10 13:01:46 +02:00

46 lines
745 B
Bash

#!/sbin/openrc-run
name="fcgiwrap"
description="fcgiwrap cgi daemon"
command="/usr/bin/fcgiwrap"
command_background="yes"
: ${user:=fcgiwrap}
: ${group:=www-data}
: ${socket:=unix:/run/fcgiwrap/fcgiwrap.sock}
depend() {
need net localmount
after firewall
}
start_pre() {
command_args="-c ${nproc:-$(nproc)} -s $socket"
case "$socket" in
unix:/*)
local socket_path=${socket#unix:}
checkpath --directory --mode 2775 --owner ${user}:${group} \
${socket_path%/*}
;;
esac
}
start() {
ebegin "Starting ${name}"
start-stop-daemon --exec ${command} \
--background \
-k 0002 \
-u ${user} -g ${group} \
--start -- ${command_args}
eend $?
}
stop_post() {
case "$socket" in
unix:/*)
rm -f "${socket#unix:}"
;;
esac
}