1
0
Fork 0
mirror of https://gitlab.alpinelinux.org/alpine/aports.git synced 2025-07-25 20:25:28 +03:00
aports/community/dante/sockd.initd
2020-03-29 11:04:44 +00:00

19 lines
252 B
Text

#!/sbin/openrc-run
#
# startup script for sockd daemon
#
depend() {
need net
after firewall
provide sockd
use dns
}
command=/usr/sbin/sockd
pidfile=/var/run/${SVCNAME}.pid
command_args="${SOCKD_OPTS}"
start_pre() {
$command -V
}