#! /sbin/sh
###############
# Product: *UserLicense
# Fileset: *-USER
# checkremove
# @(#) $Revision: 1.3.98.1 $
################
#
# (c) Copyright Hewlett-Packard Company, 1994
#
########################################################################
#                                                                      #
# Warn user that removing this fileset doesn't change the license      #
# level.                                                               #
#                                                                      #
########################################################################

# Exit status definitions.
UTILS=/usr/lbin/sw/control_utils
if [[ ! -f $UTILS ]]
then
    print "ERROR:   Cannot find the sh functions library $UTILS."
    exit 1
fi
. $UTILS

print "WARNING: Removing the $PRODUCT product will have no effect on the"
print "         system license level.  The license level can only be"
print "         changed by installing a new license level product."

exit $WARNING
