#!/bin/sh
#
# ident	"@(#)postinstall	1.2	08/04/17 SMI"
#
# Copyright 2008 Sun Microsystems, Inc.  All rights reserved.
# Use is subject to license terms.
#

# identify this package for uninstallation
REGTAG=$PKGINST

MOF=Solaris_Performance1.0.mof
JAR=perfprovider.jar
TMPMOF=${TMPDIR:-/tmp}/$MOF.$$

WBEM_BASEDIR=/    	     # set default 

USRSADM=$WBEM_BASEDIR/usr/sadm
MOFDIR=$USRSADM/mof
JARDIR=$USRSADM/lib/wbem

cat << EOF > $TMPMOF
#pragma namespace("root/system")
#pragma namespace("__create")
instance of Solaris_ProviderPath {
  pathurl = "file://$JARDIR/$JAR";
};
#pragma namespace("root/cimv2")
#pragma namespace("__create")
#pragma include("$MOFDIR/$MOF")
EOF

#
# This won't work in the diskless client scenario...
#
# /usr/sadm/bin/mofreg -r $REGTAG $TMPMOF
#
# ...but we can do mofreg's work manually to avoid the problem.
#
REGDIR=$PKG_INSTALL_ROOT/var/sadm/wbem/logr/preReg/$REGTAG
mkdir -p $REGDIR
cp $TMPMOF $REGDIR
rm $TMPMOF
