openwrtv3/openwrt/target/default/target_skeleton/etc/init.d/rcS

8 lines
148 B
Text
Raw Normal View History

2005-01-16 11:43:02 +00:00
#!/bin/sh
# Start all init scripts in /etc/init.d
# executing them in numerical order.
#
2005-05-08 22:02:59 +00:00
for i in /etc/init.d/S* ;do
[ -f "$i" ] && $i start
2005-01-16 11:43:02 +00:00
done