#!/bin/sh

# Copyright (c) 2003 by Sun Microsystems, Inc.
# All rights reserved
#

# Ensures that this patch is installed on SUNW,Sun-Fire-15000


PLATFORM_TOKEN=`prtconf | sed -n -e '5s:[ /]:_:g' -e 5p -e 6q`
PLATFORM=SUNW,Sun-Fire-15000

if [ "$PLATFORM_TOKEN" = "$PLATFORM" ] ; then
        exit 0;
	else
	  echo ""
          echo " This patch can only be applied to $PLATFORM. " 
	  echo ""
        exit 1;
fi
