#! /bin/sh
# This script is called at system startup
# This is where the installer actually interacts with the user
set -e
for script in /lib/debian-installer.d/S[0-9][0-9]*; do
	. $script || (
		echo "$script failed with exit code $?"
		echo "Press Enter to continue."
		read line
	)
done
