#!/bin/sh
#
# Copyright 1995, 1998, 2000, 2002 Sun Microsystems, Inc.  All rights reserved.
# Use is subject to license terms.
#
#pragma ident	"@(#)preinstall	1.2	02/01/28 SMI"
#
PATH=/usr/sadm/bin:$PATH

PRODREG=/usr/bin/prodreg

trap 'echo "$0: Caught Signal"; exit 3' 1 2 3

if [ "$COPY_CONFIG" = "true" ]; then
	cp -p ${PKG_INSTALL_ROOT}/etc/opt/SUNWmd/* ${PKGSAV}
fi

# If prodreg is available, unregister any old prodreg entries for SDS
# Only need to unregister the top level SDS_MNEMONIC.  All subordinate
# entries will automatically be unregistered.
#
if [ -x "${PRODREG}" ] ; then

	# Remove prodreg data for SDS 4.2.1 if it exists
	SDS_MNEMONIC=com.sun.disksuite
	SDS_UNREG="${PRODREG} unregister ${SDS_MNEMONIC}"

	ID=`${PRODREG} list mnemonic mnemonic id |
			grep -w ${SDS_MNEMONIC} |
			sort |
			head -1 |
			awk '{print $NF}'`

	[ -n "${ID}" ] && ${SDS_UNREG} ${ID}
fi
exit 0
