aboutsummaryrefslogtreecommitdiffstats
path: root/testing/dante/sockd.initd
blob: f77df213eead220430462545ea3812228177cea2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#!/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
}