blob: 71eba2302c582ca3b213eb56e3e892aaa1b06c37 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#!/sbin/openrc-run
name="busybox $SVCNAME"
command="/usr/sbin/$SVCNAME"
command_args="$INETD_OPTS"
pidfile="/var/run/$SVCNAME.pid"
depend() {
need net localmount
after firewall
}
|