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

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

PERFCAP_LIBRARY=/opt/perfcap
if [ -x $PERFCAP_LIBRARY/bin/pawzagent ] 
then
    echo "Stopping the PAWZ Agent..."
    $PERFCAP_LIBRARY/bin/pawzagent -stop
    sleep 1
fi

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

exit 0
