openwrtv3/openwrt/target/default/target_skeleton/etc/init.d/rcS
Mike Baker a8832b617d log rcS output
SVN-Revision: 816
2005-05-08 22:02:59 +00:00

7 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