X-Git-Url: http://git.rohieb.name/openwrt.git/blobdiff_plain/b2f43424402231050937792fb8b78d0184643a98..eca83c696ef5d2dd9b319e99e003caa7687e8088:/package/busybox/files/cron 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 }