#!/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