#!/bin/sh

set -x

for x in /etc/init.d/S*; do
	[ -x $x ] && $x start
done

# Without this sleep, the last command in this file doesn't seem to stay running
sleep 1


