X-Git-Url: https://git.rohieb.name/openwrt.git/blobdiff_plain/6984409e7658c80ff90b54dd1f9e8134af252845..f5275883b9d1df3c13b99c94f71b1b4a3192045f:/package/busybox/files/cron diff --git a/package/busybox/files/cron b/package/busybox/files/cron index 9a3139271..d99793709 100755 --- a/package/busybox/files/cron +++ b/package/busybox/files/cron @@ -3,10 +3,11 @@ START=50 start () { - [ -z $(ls /etc/crontabs/) ] && exit 1 + 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() {