a8832b617d
SVN-Revision: 816
7 lines
148 B
Bash
Executable file
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
|