#!/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/ecap_monitor ]
then
  $PERFCAP_LIBRARY/bin/ecap_monitor  -stop
fi
exit 0
