diff options
author | jow <jow@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2009-04-29 13:00:42 +0000 |
---|---|---|
committer | jow <jow@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2009-04-29 13:00:42 +0000 |
commit | fea7cd278b1331261f120b77e4491918fef97598 (patch) | |
tree | fb1d8d1412ad526c857b1383c42ae79cb99f38e3 /package/busybox/files/cron | |
parent | 6715482e0228bc376e2bb296dceb10e3f7d6c491 (diff) |
[package] 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
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@15481 3c298f89-4303-0410-b956-a3cf2f4a3e73
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() { |