mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-04-12 14:56:53 +02:00
12 lines
200 B
Bash
12 lines
200 B
Bash
#!/sbin/openrc-run
|
|
|
|
name="$SVCNAME"
|
|
pidfile="/run/$SVCNAME.pid"
|
|
command="/usr/bin/$SVCNAME"
|
|
command_args="$MCRON_OPTS"
|
|
command_background=true
|
|
error_logger="logger -t mcron"
|
|
|
|
depend() {
|
|
use logger
|
|
}
|