mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-04-19 14:56:46 +02:00
letting openrc background the service is preferred. also set RC_SVCNAME vars for modern naming, and correct symlinked rundir
12 lines
204 B
Bash
12 lines
204 B
Bash
#!/sbin/openrc-run
|
|
|
|
name="busybox $RC_SVCNAME"
|
|
command="/usr/sbin/$SVCNAME"
|
|
pidfile="/run/$RC_SVCNAME.pid"
|
|
command_args="$CRON_OPTS -f"
|
|
command_background=true
|
|
|
|
depend() {
|
|
need localmount
|
|
need logger
|
|
}
|