#!/bin/sh
#
#  Monitor Post Remove Installation Script HPUX
#
# Copyright (c) 2001, PerfCap Corporation, Nashua NH
# All Rights Reserved
#---------------------------------------------------------------
#
PERFCAP_LIBRARY=/opt/perfcap

# remove softlinks
#
if [ -h /usr/bin/pawzagent ]
then
       rm -f /usr/bin/pawzagent
fi

if [ -h /usr/man/man1/pawzagent.1 ]
then
       rm -f /usr/man/man1/pawzagent.1
fi
rm -rf $PERFCAP_LIBRARY/logs/pawz*.log > /dev/null 2>&1

exit 0
