mac80211: fix compile for 2.6.33 (thx, acoul)
[openwrt.git] / package / busybox / files / cron
index 9a31392..aa53896 100755 (executable)
@@ -3,10 +3,11 @@
 START=50
 
 start () {
-       [ -z $(ls /etc/crontabs/) ] && exit 1
+       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() {
This page took 0.028163 seconds and 4 git commands to generate.