#!/sbin/sh
#############################################################################
#  Product: HSCFibreCh
#  Fileset: FCHSC-KRN
#  postremove
#  @(#) $Revision: 1.1.98.1 $
#############################################################################
# (c) Copyright Hewlett-Packard Company, 1995
#############################################################################

####### add our entry to the kernel config file only if server or standalone
if [ -n "$SW_DEFERRED_KERNBLD" ] ; then
	# we are on a client; the configure script will update kernel config
	exit 0
fi


####### setup environment 
PATH=${SW_PATH}:${SW_ROOT_DIRECTORY}usr/lbin/sw
UTILS="/usr/lbin/sw/control_utils"
if [ ! -f $UTILS ] ; then
        echo "ERROR:   Cannot find \"$UTILS\"."
        exit 1

fi
. $UTILS

#
# This is a placeholder until the final postremove
# script is ready.
#
#

exit $EXITVAL

