index
:
openwrt.git
OpenWrt Source Repository
log msg
author
committer
range
feature/odhcpd_odhcp6c_udhcpc-capsdrop
linksys3200ac-master
master
summary
refs
log
tree
commit
diff
path:
root
/
package
/
busybox
/
files
/
cron
diff options
context:
1
2
3
4
5
6
7
8
9
10
15
20
25
30
35
40
space:
include
ignore
mode:
unified
ssdiff
stat only
Diffstat
(limited to 'package/busybox/files/cron')
-rwxr-xr-x
package/busybox/files/cron
3
1 files changed, 2 insertions, 1 deletions
diff --git a/package/busybox/files/cron b/package/busybox/files/cron
index f247130608..aa538969be 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() {