#!/usr/bin/ksh

_OsVer=`uname -r`
if [ "$_OsVer" != "5.7" ]
then
	echo "Patch number 113205-10 can only be applied to Solaris 2.7."
	echo "Please contact VERITAS Software to obtain the correct patch for"
	echo "your current version of Solaris."
	echo
	exit 3
fi

exit 0

