#!/bin/ksh

cmsd=`ps -ef | grep -v grep | grep rpc.cmsd | awk '{ print $2 }'`
if [ "$cmsd" != "" ] ; then
	kill $cmsd
fi
