X-Git-Url: https://git.rohieb.name/openwrt.git/blobdiff_plain/6f447d09dfa4c4ee2321f327c5b62e79db3f9173..b8d5619ca8ac95b4a0365a7adcce4b0d9c7305ce:/package/busybox/files/cron diff --git a/package/busybox/files/cron b/package/busybox/files/cron index e78d02332..465b1ab45 100755 --- a/package/busybox/files/cron +++ b/package/busybox/files/cron @@ -1,12 +1,18 @@ #!/bin/sh /etc/rc.common -# Copyright (C) 2006 OpenWrt.org +# Copyright (C) 2006-2011 OpenWrt.org + +START=50 + +SERVICE_USE_PID=1 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 + service_start /usr/sbin/crond -c /etc/crontabs -l ${loglevel:-5} } stop() { - killall crond + service_stop /usr/sbin/crond }