mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-01-28 03:51:35 +01:00
14 lines
211 B
Plaintext
14 lines
211 B
Plaintext
#!/sbin/openrc-run
|
|
|
|
name="busybox $SVCNAME"
|
|
command="/usr/sbin/$SVCNAME"
|
|
command_args="-f $INETD_OPTS"
|
|
pidfile="/var/run/$SVCNAME.pid"
|
|
command_background=true
|
|
|
|
depend() {
|
|
need net localmount
|
|
after firewall
|
|
}
|
|
|