#!/bin/sh

umask 022
trap ":" INT QUIT TSTP

for SCRIPT in /etc/rcS.d/S* ; do
  if [ -x $SCRIPT ] ; then
	  $SCRIPT start
	fi
done
