Subversion Repositories SmartDukaan

Rev

Rev 20689 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
15693 manish.sha 1
#!/bin/bash
2
 
19339 manish.sha 3
PID_PARENT=`ps -ef | grep ProfitMandiNewPushNotificationSender | grep -v grep | awk '{print $2}'`
15693 manish.sha 4
 
5
if [ -z "$PID_PARENT" ]; then
6
 
7
echo "Critical : Process Not Running"
8
 
24392 amit.gupta 9
python /root/code/trunk/PyDTR/src/scripts/ProfitMandiNewPushNotificationSender.py -C '500' -M '192.168.158.89'>> /tmp/profitMandiNewNotificationSender.log 2>&1 &
15693 manish.sha 10
 
16481 manish.sha 11
echo "Process not running Push Notification Sender Process restarted"
15693 manish.sha 12
 
13
echo "Process Restarted"
14
 
15
else
16
 
17
echo "Process Running"
18
 
19
fi
20