Sören Tempel 64c6f1e9d0 main/busybox-initscripts: rename cron service to crond
cron is the name of a virtual service and a real service. This causes a
non-fatal error with the most recent OpenRC version. This error appears
everytime openrc updates the dependency tree this can be triggered
manually by calling rc_deptree_update(3).

Renaming the busybox cron service fixes this error, however, this breaks
backwards compatibility.
2016-03-19 22:50:22 +01:00

12 lines
175 B
Plaintext

#!/sbin/openrc-run
name="busybox $SVCNAME"
command="/usr/sbin/$SVCNAME"
pidfile="/var/run/$SVCNAME.pid"
command_args="$CRON_OPTS"
depend() {
need localmount
need logger
}