#!/bin/ksh
#
#  This script verifies that the machine OS level matches this version 
#  of the patch.

PATCH_OS=5.6

OS=`uname -r`

if [[ $OS != $PATCH_OS ]]
then
        echo "This is the incorrect version of this patch."
        exit 1
fi

exit 0
