X-Git-Url: https://git.rohieb.name/openwrt.git/blobdiff_plain/b2f43424402231050937792fb8b78d0184643a98..1046d2dc19d8735629235a1b014aece409da4ba1:/package/busybox/files/cron diff --git a/package/busybox/files/cron b/package/busybox/files/cron index cf0f725d3..f24713060 100755 --- a/package/busybox/files/cron +++ b/package/busybox/files/cron @@ -3,11 +3,12 @@ START=50 start () { + [ -z "$(ls /etc/crontabs/)" ] && exit 1 mkdir -p /var/spool/cron [ -L /var/spool/cron/crontabs ] || ln -s /etc/crontabs /var/spool/cron/crontabs crond -c /etc/crontabs } stop() { - killall crond + killall -9 crond }