#!/bin/sh

#check if  gm_pid_monitor daemon is present 
if ! [ -e /usr/local/bin/gm_pid_monitor ] 
	then 
	echo " Unable to find /usr/local/bin/gm_pid_monitor " 
	exit 1 
fi 

# Start the gm_pid_monitor  
/usr/local/bin/gm_pid_monitor & 
