X-Git-Url: https://git.rohieb.name/openwrt.git/blobdiff_plain/6f447d09dfa4c4ee2321f327c5b62e79db3f9173..733f605a17e5ef598450cb30b5a92891c7e0da2b:/package/busybox/files/cron diff --git a/package/busybox/files/cron b/package/busybox/files/cron index e78d02332..56348c84a 100755 --- a/package/busybox/files/cron +++ b/package/busybox/files/cron @@ -1,12 +1,17 @@ #!/bin/sh /etc/rc.common # Copyright (C) 2006 OpenWrt.org +START=50 + +PATH="/bin:/sbin:/usr/bin:/usr/sbin" 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 }