mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-02-03 15:01:44 +01:00
16 lines
241 B
Plaintext
16 lines
241 B
Plaintext
#!/sbin/openrc-run
|
|
|
|
: ${cfgfile:="/etc/jool/$RC_SVCNAME.conf"}
|
|
|
|
command="/usr/bin/joold"
|
|
command_args="$cfgfile"
|
|
command_background=yes
|
|
|
|
pidfile="/run/$RC_SVCNAME.pid"
|
|
required_files="$cfgfile"
|
|
|
|
depend() {
|
|
need net jool
|
|
after keepalived
|
|
}
|