mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-07-24 11:45:18 +03:00
11 lines
218 B
Bash
11 lines
218 B
Bash
#!/sbin/openrc-run
|
|
|
|
command=/usr/sbin/foolsm
|
|
|
|
if yesno "$use_supervisor"; then
|
|
command_args_foreground="-f"
|
|
supervisor=supervise-daemon
|
|
else
|
|
pidfile="/run/$RC_SVCNAME.pid"
|
|
command_args="-p $pidfile"
|
|
fi
|