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