X-Git-Url: https://git.rohieb.name/openwrt.git/blobdiff_plain/fea7cd278b1331261f120b77e4491918fef97598..c18e77fd345fcede79e68a58e3d0f99ded084338:/package/busybox/files/cron diff --git a/package/busybox/files/cron b/package/busybox/files/cron index aa538969b..d99793709 100755 --- a/package/busybox/files/cron +++ b/package/busybox/files/cron @@ -3,10 +3,10 @@ START=50 start () { - loglevel=$(/sbin/uci get "system.@system[0].cronloglevel" 2>/dev/null) + 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 + ln -s /etc/crontabs /var/spool/cron/ 2>/dev/null crond -c /etc/crontabs -l ${loglevel:-5} }