#! /sbin/sh
########
# PRODUCT: InternetSrvcs
# Fileset: INETSVCS-RUN
# preinstall
# @(#) $Revision: 1.2.212.1 $
########
#
#   (c) Copyright Hewlett-Packard Company  1993, 1994
#
#######
#
# Standard initialization
#

exitval=0			# Anticipate success

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


#
#
########
#
# Start of INETSVCS-RUN pre-installation process
#

#       Backup appropriate original Internet Service configuration files, so 
#	that they may be used to help determine administrator changes from
#       release changes during the update.
#

for file in \
        /etc/rc.config.d/mailservs
do
	newconfig_prep $file
done

exit $exitval
