Allow running without "logger" installed
SVN-Revision: 14938
This commit is contained in:
parent
088ea2fb6e
commit
20b5626363
1 changed files with 4 additions and 1 deletions
|
@ -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 &
|
||||
|
|
Loading…
Reference in a new issue