#! /bin/csh -f

#
# if FWDIR is not /etc/fw, maybe we should have a link there
#
source scripts/aliases

	if (!($?fwlink)) goto ok
	if ($fwlink) then
		exists /etc/fw
		if ($status == 0) then
			E "Moving /etc/fw to /etc/fw.$now"
			mv /etc/fw /etc/fw.$now
		endif
		E "Linking $FWDIR to /etc/fw"
		ln -s $FWDIR /etc/fw
		E "FW-1 /etc/fw Link Made."
	endif

ok:
	exit 0
