#! /bin/sh
#
# Script to check that the system has SunSoft Print Client Software installed.
# If SUNWpcu is not installed, instruct the user to install equivalent SunSoft
# Print Client Software patch.
#

pkginfo -R $ROOTDIR -q SUNWpcu
status=$?
if [ $status -eq 0 ]
then
	echo "This system contains a copy of the SunSoft Print Client"
	echo "Software.  In order to patch the system, you must retrieve" 
	echo "the equivalent SunSoft Print Client Software Patch and "
	echo "install it instead."
	exit 1
fi

exit 0
