mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-11-03 18:01:55 +01:00
17 lines
301 B
Bash
17 lines
301 B
Bash
#!/sbin/openrc-run
|
|
|
|
name="gearmand"
|
|
description="Gearman server"
|
|
|
|
command="/usr/sbin/gearmand"
|
|
command_args="-d $gearmand_opts"
|
|
command_background="yes"
|
|
|
|
pidfile="/run/${RC_SVCNAME}.pid"
|
|
start_stop_daemon_args="--user=$gearmand_user:$gearmand_group"
|
|
|
|
depend() {
|
|
need net localmount
|
|
after firewall
|
|
}
|