root/trunk/tool/check.sh @ 73

Revision 73, 478 bytes (checked in by andreu, 15 years ago)

last changes before next release

  • Property svn:eol-style set to native
Line 
1#!/bin/sh
2
3num=`ps ax|grep "renetcol" |grep -v grep|grep -v defunct|grep -v check|wc -l|awk '{print $1}'`
4
5if [ $num -lt 4 ]
6then
7  killall renetcol
8  sleep 1
9  killall renetcolSender
10  sleep 1
11  killall renetcolAgg
12  sleep 1
13  $1/src/renetcolMsgCtl $1/src/renetcol
14  echo "renetcolMsgCtl started"
15  sleep 2
16  $1/src/renetcol
17  echo "renetcol restarted"
18  $1/src/renetcolSender $1/src/renetcol 1
19  echo "renetcolSender restarted"
20  $1/src/renetcolAgg
21else
22  echo "All is up"
23fi
Note: See TracBrowser for help on using the browser.