X-Git-Url: http://git.rohieb.name/openwrt.git/blobdiff_plain/fa83d388532f171cb429e18ee33da90dd5f48c8d..071298ef7069c0fda08a97a8a8e258c6dc0af269:/package/busybox/files/cron diff --git a/package/busybox/files/cron b/package/busybox/files/cron index 9bc89d81c..56348c84a 100755 --- a/package/busybox/files/cron +++ b/package/busybox/files/cron @@ -2,10 +2,14 @@ # 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() {