#!/bin/sh
#
# Copyright 1998-2004 Sun Microsystems, Inc.  All rights reserved.
# Use is subject to license terms.
#
#ident  "@(#)postremove 1.2     04/10/04 SMI"
#
#

RTRDIR=${PKG_INSTALL_ROOT}/usr/cluster/lib/rgm/rtreg
# Remove the link from the RT repository directory

#S1AS RTR

rm -f $RTRDIR/SUNW.s1as

#JSAS RTR
rm -f $RTRDIR/SUNW.jsas

CLUSTERMANDIR=${PKG_INSTALL_ROOT}/usr/cluster/man/sman5
# Remove link to man pages

#S1AS man pages
rm -f $CLUSTERMANDIR/SUNW.s1as.5
rm -f $CLUSTERMANDIR/s1as.5

#JSAS man pages
rm -f $CLUSTERMANDIR/SUNW.jsas.5
rm -f $CLUSTERMANDIR/jsas.5

exit $?
