Merge r14540 and r15481 to 8.09
authorJo-Philipp Wich <jow@openwrt.org>
Wed, 29 Apr 2009 13:08:54 +0000 (13:08 +0000)
committerJo-Philipp Wich <jow@openwrt.org>
Wed, 29 Apr 2009 13:08:54 +0000 (13:08 +0000)
SVN-Revision: 15484

package/busybox/files/cron

index 9a313927178067409d5c729dce84922f8b24c2b0..aa538969be2aab12b7362fe8938c8e289fa8a85b 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() {