aboutsummaryrefslogtreecommitdiffstats
path: root/package/busybox/files
diff options
context:
space:
mode:
authorJo-Philipp Wich <jow@openwrt.org>2009-04-29 13:00:42 +0000
committerJo-Philipp Wich <jow@openwrt.org>2009-04-29 13:00:42 +0000
commitd26ec37d18b7d14a1a0f52bee8b3be35058bdd46 (patch)
treeb5254772186cb4d209c9cd14eeee197670cff10c /package/busybox/files
parentdf8693a787fdd08bb942055616c84ca4df17ed20 (diff)
downloadupstream-d26ec37d18b7d14a1a0f52bee8b3be35058bdd46.tar.gz
upstream-d26ec37d18b7d14a1a0f52bee8b3be35058bdd46.tar.bz2
upstream-d26ec37d18b7d14a1a0f52bee8b3be35058bdd46.zip
busybox: add possibility to set crond log level through /etc/config/system and use level 5 by default which prevents unneeded debug messages on each job execution
SVN-Revision: 15481
Diffstat (limited to 'package/busybox/files')
-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 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() {