aboutsummaryrefslogtreecommitdiffstats
path: root/package/base-files/files
diff options
context:
space:
mode:
authorMichael Büsch <mb@bu3sch.de>2009-03-18 13:05:18 +0000
committerMichael Büsch <mb@bu3sch.de>2009-03-18 13:05:18 +0000
commit20b562636356a3b1ebeb7d18483e501422f23da7 (patch)
tree760c3e2519409fd2764a46d85770b7969a168926 /package/base-files/files
parent088ea2fb6e8c56778c1f952c31fe063116e4fc46 (diff)
downloadupstream-20b562636356a3b1ebeb7d18483e501422f23da7.tar.gz
upstream-20b562636356a3b1ebeb7d18483e501422f23da7.tar.bz2
upstream-20b562636356a3b1ebeb7d18483e501422f23da7.zip
Allow running without "logger" installed
SVN-Revision: 14938
Diffstat (limited to 'package/base-files/files')
-rwxr-xr-xpackage/base-files/files/etc/init.d/rcS5
1 files changed, 4 insertions, 1 deletions
diff --git a/package/base-files/files/etc/init.d/rcS b/package/base-files/files/etc/init.d/rcS
index b44f441c14..4090aba801 100755
--- a/package/base-files/files/etc/init.d/rcS
+++ b/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 &