Browse Source

Allow running without "logger" installed

SVN-Revision: 14938
Michael Büsch 17 years ago
parent
commit
20b5626363
1 changed files with 4 additions and 1 deletions
  1. 4 1
      package/base-files/files/etc/init.d/rcS

+ 4 - 1
package/base-files/files/etc/init.d/rcS

@@ -1,8 +1,11 @@
 #!/bin/sh
 # Copyright (C) 2006 OpenWrt.org
 
+LOGGER="cat"
+[ -x /usr/bin/logger ] && LOGGER="logger -s -p 6 -t ''"
+
 {
 	for i in /etc/rc.d/$1*; do
 		[ -x $i ] && $i $2 2>&1
 	done 
-} | logger -s -p 6 -t '' &
+} | $LOGGER &