#! /bin/sh
#	BSDI $Id: begin_install,v 1.1 1996/01/11 18:33:19 bostic Exp $

F=/usr/src
N="Library and Utility Sources"
if [ ! -e $F ]; then
	exit 0;
fi
echo "The $N package should be installed into an empty"
echo "$F hierarchy.  This directory already exists on your"
echo "system."
prompt="Do you want to move $F to ${F}.2.0? [no]: "
read -p "$prompt" yesno

case "$yesno" in
y*|Y*)	mv $F ${F}.2.0; break;;
*)	exit 1;;
esac

if [ -f $F ]; then
	exit 1;
else
	exit 0;
fi
