#!/bin/sh
#
# Copyright (c) 2002, PerfCap Corporation, Nashua NH
# All Rights Reserved
#
#  post install  for HP-UX itanium
#---------------------------------------------------------------------
OS="`uname -s`"
OSVER="`uname -r`" 
PERFCAP_LIBRARY=/opt/perfcap

if [ -f /sbin/init.d/perfcap ]
then
   sh /sbin/init.d/perfcap start
fi
echo "----------------------------------------------------------------------"
echo "  PAWZ Agent installed, access it with $PERFCAP_LIBRARY/bin/pawzagent "
echo "----------------------------------------------------------------------"
exit 0
