#! /bin/sh 
#
# @(#)prepatch	1.1	96/04/25
#
# 2.5_HW:1/96 FFB Jumbo Patch prepatch script

#
# In the case of a system which has been upgraded from S2.5 -> S2.5_HW:1/96,
# remove SUNWvlxil/install/space from the system before installing patch.
# This space file will have been left over from the S2.5 upgrade.
#

spacefile="${ROOTDIR}/var/sadm/pkg/SUNWvlxil/install/space"
sunos_rev=`uname -r`

if [ ${sunos_rev} = "5.5" ]; then
	rm -f ${spacefile}
fi

exit 0
