#!/bin/sh

echo "begin launchUpdate"

# check for existance of the update script...
if [ ! -e /auto/cdrom/update-2.4*gz ]; then
	echo "can't find the update script..."
	exit
fi

# unpack the update script
echo "unpacking the update script"
cd /
tar zxvf /auto/cdrom/update-2.4*tgz

# go to telinit 1
echo "Going to runlevel 1, shutting down X"
/sbin/init 1 
