#! /sbin/sh
########
# PRODUCT: InternetSrvcs
# Fileset: INETSVCS-BOOT
# 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-BOOT pre-installation process
#

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

for file in \
	/etc/boottab \
	/etc/bootptab \
	/etc/ntp.conf \
	/etc/ntp.keys
do
	newconfig_prep $file
done

exit $exitval
