From: Jo-Philipp Wich Date: Wed, 29 Apr 2009 13:00:42 +0000 (+0000) Subject: [package] busybox: add possibility to set crond log level through /etc/config/system... X-Git-Url: http://git.openwrt.org/?p=openwrt%2Fsvn-archive%2Farchive.git;a=commitdiff_plain;hb=91d61a0350bdd552fb2ee6b6ed11b5a84d3b55d9 [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 SVN-Revision: 15481 --- diff --git a/package/busybox/Makefile b/package/busybox/Makefile index 0b4e3d456d..3a04637acc 100644 --- a/package/busybox/Makefile +++ b/package/busybox/Makefile @@ -9,7 +9,7 @@ include $(TOPDIR)/rules.mk PKG_NAME:=busybox PKG_VERSION:=1.11.3 -PKG_RELEASE:=5 +PKG_RELEASE:=6 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2 PKG_SOURCE_URL:=http://www.busybox.net/downloads \ 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() {