busybox: remove validation message from bootup
authorSteven Barth <cyrus@openwrt.org>
Thu, 2 Oct 2014 19:47:33 +0000 (19:47 +0000)
committerSteven Barth <cyrus@openwrt.org>
Thu, 2 Oct 2014 19:47:33 +0000 (19:47 +0000)
A message:
uinteger - 9 = true
is displayed during boot. This is the result of the validate_data
command checking the cron log level. As the output is not
interesting, only the result, filter...

Signed-off-by: Michel Stam <m.stam@fugro.nl>
SVN-Revision: 42751

package/utils/busybox/files/cron

index 8f54527805ed44dd3048d98936617a5071eb038f..19ecc431735eb62025cca57061735ad9e4ac388f 100755 (executable)
@@ -17,7 +17,7 @@ start_service () {
        loglevel=$(uci_get "system.@system[0].cronloglevel")
 
        [ -z "${loglevel}" ] || {
-               /sbin/validate_data uinteger "${loglevel}"
+               /sbin/validate_data uinteger "${loglevel}" 2>/dev/null
                [ "$?" -eq 0 ] || {
                        echo "validation failed"
                        return 1