#!/bin/sh
# 4160487

SYNCPID=`/bin/ps ax | /usr/bin/grep dmnotifyd | /usr/bin/grep DMNotification | /usr/bin/awk '{print $1}'`
if [ $SYNCPID ]
then
	/bin/kill -s SIGTERM $SYNCPID
fi
