Allow running without "logger" installed

SVN-Revision: 14938
This commit is contained in:
Michael Büsch 2009-03-18 13:05:18 +00:00
parent 088ea2fb6e
commit 20b5626363
1 changed files with 4 additions and 1 deletions

View File

@ -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 &