mirror of
https://github.com/openwrt/openwrt.git
synced 2024-12-26 17:01:14 +00:00
291420a8f3
SVN-Revision: 7163
9 lines
121 B
Bash
Executable File
9 lines
121 B
Bash
Executable File
#!/bin/sh
|
|
# Copyright (C) 2006 OpenWrt.org
|
|
|
|
{
|
|
for i in /etc/rc.d/$1*; do
|
|
$i $2 2>&1
|
|
done
|
|
} | logger -s -p 6 -t '' &
|