mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-12-26 20:02:30 +01:00
13 lines
183 B
Plaintext
13 lines
183 B
Plaintext
#!/sbin/runscript
|
|
|
|
name="busybox $SVCNAME"
|
|
command="/usr/sbin/$SVCNAME"
|
|
command_args="$INETD_OPTS"
|
|
pidfile="/var/run/$SVCNAME.pid"
|
|
|
|
depend() {
|
|
need net localmount
|
|
after firewall
|
|
}
|
|
|