#!/bin/sh
#
# This script is used for patches that are only intended to be
# installed on CS6400 systems.  It will prevent the patch from
# being installed on other systems.
#
ARCH=`uname -i`
case "${ARCH}" in
	CYRS,Superserver-6400) ;;
	*)
		echo "This patch is intended for CS6400 systems only."
		exit 1
		;;
esac
exit 0
