mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-01-03 07:42:10 +01:00
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.
12 lines
175 B
Plaintext
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
|
|
}
|