openwrtv3/package/base-files/files/etc/init.d/rcS
Michael Büsch 20b5626363 Allow running without "logger" installed
SVN-Revision: 14938
2009-03-18 13:05:18 +00:00

11 lines
191 B
Bash
Executable file

#!/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 &