#!/bin/sh

#
# Start all scripts that have to run on startup from CD
#

cd /isolinux/start
for i in *; do
	sh $i
done

# If we have nothing else to do run sh

while true; do
	sh
done
