mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-07-25 20:25:28 +03:00
14 lines
231 B
Text
14 lines
231 B
Text
#!/sbin/openrc-run
|
|
|
|
pidfile="/var/run/fwknop/fwknopd.pid"
|
|
command=/usr/sbin/fwknopd
|
|
command_args="--pid-file $pidfile $fwknopd_args"
|
|
|
|
depend() {
|
|
use logger
|
|
after net
|
|
}
|
|
|
|
start_pre() {
|
|
checkpath --directory ${pidfile%/*}
|
|
}
|