#! /bin/csh -f

#
# do we have a license file ?  if no, does user have one ?  if not, use default
# eval ?
#
source scripts/aliases

	E "$product license"
	E "------------------"
	E "In order to use FireWall-1 you will need a valid license string."
	E "If you do not have a valid evaluation or permanent license string,"
	E "please refer to the documentation for ordering information."
	E ""
	E -n "Do you have a valid license key (y/n) [n]? "
	get dans
	if ("X$dans" == Xy) goto ok
	E -n "Do you wish to proceed with the installation process (y/n) [n]? "
	get dans
	if ("X$dans" != Xy) goto abort
	E "Proceeding with the installation process anyway..."

ok:
	exit 0

abort:
	exit 1
