#! /sbin/sh
########
#  Product: InternetSrvcs
#  Fileset: INETSVCS-DTC
#  checkinstall
#  @(#) $Revision: 1.2.212.1 $
########
#
# (c) Copyright Hewlett-Packard Company, 1993
#
########

UTILS="/usr/lbin/sw/control_utils"
if [[ ! -f $UTILS ]]
then
       echo "ERROR: Cannot find $UTILS"
       exit 1
fi
. $UTILS
exitval=$SUCCESS				# Anticipate success

#---------------------------------------------------------------------------
#  Do other tasks, if necessary.  When the checkinstall script is run 
#  on the 9.x system, the filesystem layout is not converted yet.  In 
#  order to make commands used in the checkinstall script run, SD will 
#  set SW_PATH with appropriate searching paths.  Use the basenames of 
#  the commands in your checkinstall script.  For instance, use grep 
#  instead of /usr/bin/grep.
#---------------------------------------------------------------------------

transition_check $exitval

exit $exitval 
