X-Git-Url: https://git.rohieb.name/openwrt.git/blobdiff_plain/b2f43424402231050937792fb8b78d0184643a98..a57da010e17b5072f4fde246ff4e8b565757f7c9:/package/busybox/files/cron?ds=inline diff --git a/package/busybox/files/cron b/package/busybox/files/cron index cf0f725d3..9a3139271 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 }