aports/main/busybox/dnsd.initd
psykose e44921abbe main/busybox: set init.d foregrounding, cleanup
- sets command_background=true and foreground arg for most init.d's
- s/SVCNAME/RC_SVCNAME for modern varname
- s|/var/run|/run| as /var/run is symlinked to /run, which is the linux rundir
2023-01-24 04:32:42 +00:00

13 lines
198 B
Bash

#!/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
}