if [ -f /etc/tux/pkg/opensshd/sshroot.tgz ]
then
	echo "Found saved sshroot.tgz"
	mv /etc/tux/pkg/opensshd/sshroot.tgz /
	cd /
	tar xzvf sshroot.tgz
fi

if [ -f /.ssh/identity ] 
then
	echo "-- Found ssh keys for root"
	exit
else
	echo
	echo "*** No ssh keys for root found, you will need to generate them"
	echo "*** with ssh-keygen. If you wish to save the keys to a boot"
	echo" *** boot floppy, type save-sshkeys" 
fi
