summaryrefslogtreecommitdiffstats
path: root/package/busybox/files/cron
diff options
context:
space:
mode:
Diffstat (limited to 'package/busybox/files/cron')
-rwxr-xr-xpackage/busybox/files/cron3
1 files changed, 2 insertions, 1 deletions
diff --git a/package/busybox/files/cron b/package/busybox/files/cron
index f24713060..aa538969b 100755
--- a/package/busybox/files/cron
+++ b/package/busybox/files/cron
@@ -3,10 +3,11 @@
START=50
start () {
+ 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() {