mirror of
https://github.com/openwrt/openwrt.git
synced 2024-12-23 07:22:33 +00:00
20b5626363
SVN-Revision: 14938
12 lines
191 B
Bash
Executable File
12 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 &
|