#!/bin/sh
#
# Copyright (c) 2002, PerfCap Corporation, Nashua NH
# All Rights Reserved

#---------------------------------------------------------

PERFCAP_LIBRARY=/opt/perfcap

if [ -f /sbin/init.d/perfcap ]
then
   sh /sbin/init.d/perfcap stop
fi

if [ -f $PERFCAP_LIBRARY/bin/pawzagent ]
then
  $PERFCAP_LIBRARY/bin/pawzagent  -stop
fi
exit 0

