mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-07-22 18:55:29 +03:00
11 lines
177 B
Bash
11 lines
177 B
Bash
#!/sbin/openrc-run
|
|
|
|
name="$RC_SVCNAME"
|
|
command="/usr/sbin/crond"
|
|
command_args="$CRON_OPTS -n"
|
|
command_background=true
|
|
pidfile="/run/$RC_SVCNAME.pid"
|
|
|
|
depend() {
|
|
provide cron
|
|
}
|