#
# Copyright 2004 Sun Microsystems, Inc.  All rights reserved.
# Use is subject to license terms.
#
#ident	"@(#)preinstall	1.2	04/07/23 SMI"
#

#
# If we are upgrading a system with smf(5) already installed, then we
# won't take any action.  Otherwise, if the legacy unbundled NTP or the
# standard NTP service was enabled, preserve that.
#
if [ "$UPDATE" = "yes" ]; then
	BASEPREFIX=`echo $BASEDIR | sed "s/\//_/g"`

	FILENAME=`echo sunwntpr_ntp"$BASEPREFIX" | cut -c 1-256`
	TMPFILE=/tmp/$FILENAME
        if [ -f $TMPFILE ]; then
                rm $TMPFILE
        fi

	if [ ! -f $BASEDIR/var/svc/manifest/network/ntp.xml ]; then
		if [ -f $BASEDIR/etc/opt/SUNWxtnp/ntp.conf -o \
		    -f $BASEDIR/etc/inet/ntp.conf ]; then
			touch $TMPFILE
		fi
	fi
fi
