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