openwrt/package/base-files/files/etc/init.d/rcS
John Crispin f43b7934d2 make basefiles aware of procd
Signed-off-by: John Crispin <blogic@openwrt.org>

SVN-Revision: 36003
2013-03-13 18:11:19 +00:00

10 lines
183 B
Bash
Executable File

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