X-Git-Url: http://git.rohieb.name/openwrt.git/blobdiff_plain/b2f43424402231050937792fb8b78d0184643a98..1eb6639f5e38e474968cfdb9fce2fb0441ad478a:/package/busybox/files/cron diff --git a/package/busybox/files/cron b/package/busybox/files/cron index cf0f725d3..d99793709 100755 --- a/package/busybox/files/cron +++ b/package/busybox/files/cron @@ -3,11 +3,13 @@ START=50 start () { + loglevel=$(uci_get "system.@system[0].cronloglevel") + [ -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 + ln -s /etc/crontabs /var/spool/cron/ 2>/dev/null + crond -c /etc/crontabs -l ${loglevel:-5} } stop() { - killall crond + killall -9 crond }