1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-11-09 21:41:53 +02:00
openwrt-xburst/target/default/target_skeleton/etc/init.d/rcS
mbm c3379bd970 log rcS output
git-svn-id: svn://svn.openwrt.org/openwrt/trunk/openwrt@816 3c298f89-4303-0410-b956-a3cf2f4a3e73
2005-05-08 22:02:59 +00:00

8 lines
148 B
Bash
Executable File

#!/bin/sh
# Start all init scripts in /etc/init.d
# executing them in numerical order.
#
for i in /etc/init.d/S* ;do
[ -f "$i" ] && $i start
done