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

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

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