#
#####Message texts######
set instr = "Please answer Y or N to the following questions."
set mesg1 = "Enable the TRFS option (Transparent Remote File System)"
set mesg2 = "Enable the ENET option (boot off network)"
set mesg3 = "Enable the QUOTA option (user disk quotas)"
set mesg4 = "Enable the VT option (video terminal--graphics)"
########################

echo $instr
echo

					# handle TRFS
echo -n $mesg1'? '
set TRFS = ($<)
					# handle ENET
echo -n $mesg2'? '
set ENET = ($<)
					# handle QUOTA
echo -n $mesg3'? '
set QUOTA = ($<)

					# handle VT
echo -n $mesg4'? '
set VT = ($<)
