1
0
Fork 0
mirror of https://gitlab.alpinelinux.org/alpine/aports.git synced 2025-07-26 04:35:39 +03:00
aports/testing/dante/sockd.initd
2016-08-17 21:03:41 +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
}