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