mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2025-02-12 04:51:56 +02:00
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
|