mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-11-10 02:59:42 +02:00
ebccf413f5
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@15323 3c298f89-4303-0410-b956-a3cf2f4a3e73
12 lines
196 B
Bash
Executable File
12 lines
196 B
Bash
Executable File
#!/bin/sh
|
|
# Copyright (C) 2006 OpenWrt.org
|
|
|
|
LOGGER="cat"
|
|
[ -x /usr/bin/logger ] && LOGGER="logger -s -p 6 -t sysinit"
|
|
|
|
{
|
|
for i in /etc/rc.d/$1*; do
|
|
[ -x $i ] && $i $2 2>&1
|
|
done
|
|
} | $LOGGER &
|