[package] busybox: implement support for 6RD (RFC5969 7.1.1, DHCP option 212) in...
[openwrt.git] / package / busybox / files / cron
index 9bc89d8..d997937 100755 (executable)
@@ -3,9 +3,11 @@
 START=50
 
 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() {
This page took 0.026368 seconds and 4 git commands to generate.