#!/bin/sh
#
# Copyright 2006 Sun Microsystems, Inc.  All rights reserved. 
# Use is subject to license terms. 
#
#
# Check for SUNWwbsup

/usr/bin/pkginfo -q -R $ROOTDIR SUNWwbsup 

if [ $? -eq 0 ]; then  
  exit 0
fi

	cat <<EOF

This patch requires the installation of the WAN boot support package, SUNWwbsup.

The SUNWwbsup package can be found on the Solaris 9 Update 5 (12/2003) installation media or newer Solaris 9 updates.  In addition, the Sol9 9/05 image can be obtained from the following URL:

  http://www.sun.com/software/solaris/9

EOF

exit 1
