blob: 42e4a34c13a96091c62ea81f6124125a08bddfb1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#!/sbin/openrc-run
name="busybox $RC_SVCNAME"
command="/usr/sbin/$RC_SVCNAME"
command_args="$DNSD_OPTS"
pidfile="/run/$SVCNAME.pid"
command_background=true
depend() {
need net
after firewall
}
|