#! /bin/sh 
# Copyright 2001 Sun Microsystems, Inc. All Rights Reserved.
# @(#)prepatch	1.3 01/10/17 Sun Microsystems
#
# Script to check that the system is a CP1500.
# If it isn't, exit cleanly.
# This is to fix 
# 4515212 patch 106533-09 needs to install only on nordica-red platforms
# If one exits 0, it goes ahead and installs the patch, which is not
# what we want.
#

PLATFORM=`/bin/uname -i`
if [ -z $PLATFORM -o $PLATFORM != "SUNW,UltraSPARC-IIi-cEngine" ] ; then
	echo "This system is not a SUNW,UltraSPARC-IIi-cEngine"
	exit 1
fi

