mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-11-09 21:41:53 +02:00
c3379bd970
git-svn-id: svn://svn.openwrt.org/openwrt/trunk/openwrt@816 3c298f89-4303-0410-b956-a3cf2f4a3e73
8 lines
148 B
Bash
Executable File
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
|