#! /bin/sh
#
# 2.6 xil Jumbo Patch prepatch script
#
# Rename SUNWxilrl/install/space from the system before installing patch.
# This space will cause space problem during installation process.

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

if [ ${sunos_rev} = "5.6" ]; then
	if [ -f ${spacefile} ]; then
		mv ${spacefile} ${spacefile}.orig
	fi
fi
