a template for a tool that will spit out the configuration for a node to see
[monitor.git] / automate_pl03.sh
index 4cf870d..e31ead9 100755 (executable)
@@ -2,16 +2,32 @@
 
 set -e
 cd $HOME/monitor/
-
+DATE=`date +%Y-%m-%d-%T`
+
+
+if [ -f $HOME/monitor/SKIP ] ; then 
+       # TODO: should be possible to kill the old version if 
+       # desired and prevent lingering instances of automate.
+       if [ -z "$1" ] ; then 
+               echo "KILLING Monitor"
+               ./kill.cmd.sh `cat $HOME/monitor/SKIP`
+               rm -f $HOME/monitor/SKIP
+       else 
+               # skipping monitor
+               echo "SKIPPING Monitor"
+               exit
+       fi 
+fi
+echo $$ > $HOME/monitor/SKIP
 #########################
 # 1. FINDBAD NODES 
 rm -f pdb/production.findbad2.pkl
-./findbad.py --cachenodes --debug=0 --dbname="findbad2"
+./findbad.py --cachenodes --debug=0 --dbname="findbad2" $DATE
 
 ########################
 # COPY to golf for diagnose.py and action.py
 cp pdb/production.findbad2.pkl pdb/production.findbad.pkl
-scp pdb/production.findbad2.pkl soltesz@golf.cs.princeton.edu:monitor3/pdb/production.findbad.pkl
+#scp pdb/production.findbad2.pkl soltesz@golf.cs.princeton.edu:monitor3/pdb/production.findbad.pkl
 
 ########################
 # COPY Act_all records
@@ -25,12 +41,23 @@ cp badcsv.txt /plc/data/var/www/html/monitor/
 #########################
 # 2. FINDBAD PCUS
 rm -f pdb/production.findbadpcus2.pkl
-./findbadpcu.py --increment --refresh --debug=0 --dbname=findbadpcus2
+./findbadpcu.py --increment --refresh --debug=0 --dbname=findbadpcus2 $DATE            
+
+# clean up stray 'locfg' processes that hang around inappropriately...
+ps ax | grep locfg | grep -v grep | awk '{print $1}' | xargs kill
+
 # convert pkl to php serialize format.
 cp pdb/production.findbadpcus2.pkl pdb/production.findbadpcus.pkl
 ./pkl2php.py -i findbadpcus2 -o findbadpcus
 
+./pkl2php.py -i act_all -o act_all
+./pkl2php.py -i plcdb_hn2lb -o plcdb_hn2lb
+./pkl2php.py -i findbad -o findbadnodes
+./pkl2php.py -i ad_dbTickets -o ad_dbTickets
+./pkl2php.py -i idTickets -o idTickets
 
 for f in findbad act_all findbadpcus l_plcnodes; do 
        cp pdb/production.$f.pkl archive-pdb/`date +%F`.production.$f.pkl
 done
+
+rm -f $HOME/monitor/SKIP