#!/bin/sh

OS_V=`uname -r`
if [ 5.8 != $OS_V ] && [ 5.9 != $OS_V ] ; then
   echo "This patch is for SunOS 2.8 and SunOS 2.9. Please install the correct patch"
   exit 1
fi 


