#!/bin/sh
#
# Copyright 2004 Sun Microsystems, Inc.  All rights reserved.
# Use is subject to license terms.
#
#ident  "@(#)postbackout	1.3	04/08/26 SMI"
#
#
#  This program performs the postbackout activity for the SUNWsem9ui package.
#  This is equivalent to a postremove for SUNWsem9ui
#

BIN_DIR=/usr/sbin
SMREG=$BIN_DIR/smreg
SMCWEBSERVER=$BIN_DIR/smcwebserver

BASEDIR=`pkgparam SUNWsem9ui BASEDIR`
INSTALLDIR=/usr/share/webconsole/se6920ui
WEBAPPDIR=$INSTALLDIR/

APPNAME=com.sun.netstorage.array.mgmt.se6920ui_3.0

#
# RCB - Tell user what to do now
#
${SMREG} remove -a $APPNAME
$SMREG add -a $WEBAPPDIR

echo ""
echo "-------postbackout completed--------"
echo ""

exit 0
