mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-07-17 14:05:25 +03:00
14 lines
277 B
Bash
14 lines
277 B
Bash
#!/sbin/openrc-run
|
|
|
|
supervisor=supervise-daemon
|
|
name="taskcafe"
|
|
command="/usr/bin/taskcafe"
|
|
command_args="--config $taskcafe_configfile web"
|
|
command_user="taskcafe:taskcafe"
|
|
command_background=true
|
|
pidfile="/run/taskcafe.pid"
|
|
|
|
depend() {
|
|
need net localmount
|
|
after firewall
|
|
}
|