#!/bin/sh
#
# Copyright 2006 Sun Microsystems, Inc.  All rights reserved.
# Use is subject to license terms.
#
# ident	"@(#)preremove	1.1	06/08/01 SMI"

# Keep /var/svc/profile/generic.xml across OS upgrades.

if [ -f $BASEDIR/var/svc/profile/generic.xml ]; then
	mv $BASEDIR/var/svc/profile/generic.xml \
	    $BASEDIR/var/svc/profile/generic.xml.ABCsavedXYZ
fi
exit 0
