diff --git a/ProductionTools/installed/castor.checklogs b/ProductionTools/installed/castor.checklogs index f003be9764713fa6aec4151ce40b06b4014a6fe7..1dc1b45cca6054f04b4100a86b93daf5d65fd8d1 100755 --- a/ProductionTools/installed/castor.checklogs +++ b/ProductionTools/installed/castor.checklogs @@ -3,7 +3,7 @@ # Prints every log file name of a running CastorScript instance # if the log file size is non empty -for c in `cat castor.confs`; do +for c in `cat ~/castor.confs`; do logdir=$(grep LogDir: $c | awk '{print $NF}' | tr -d "'") logdir=${logdir%/} # remove trailing slash lsl=$(ls -l `echo "$logdir/*.log"` 2>/dev/null) diff --git a/ProductionTools/installed/castor.greplogs b/ProductionTools/installed/castor.greplogs index 25452deb8f379e9a01b9bcc0b56dfa4928176393..e64b5d5e43a277ba50d8e3a3985aed80a9b1db8e 100755 --- a/ProductionTools/installed/castor.greplogs +++ b/ProductionTools/installed/castor.greplogs @@ -7,7 +7,7 @@ if [ x"$1" = x ]; then fi TOGREP=$1 -CASTOR_CONFS="`cat castor.confs`" +CASTOR_CONFS="`cat ~/castor.confs`" if [ x"$2" != x ]; then CASTOR_CONFS=`echo -e "$CASTOR_CONFS" | grep $2` fi diff --git a/ProductionTools/installed/castor.logdir b/ProductionTools/installed/castor.logdir index f35e1a8b4d5a8e65f354626e5a9eb18c966fa3c4..7e0b5d45a608db34b5619e2e70c102c061ac5783 100755 --- a/ProductionTools/installed/castor.logdir +++ b/ProductionTools/installed/castor.logdir @@ -1,6 +1,6 @@ #!/usr/bin/env bash -CASTOR_CONFS="`cat castor.confs`" +CASTOR_CONFS="`cat ~/castor.confs`" if [ x"$1" != x ]; then CASTOR_CONFS=`echo -e "$CASTOR_CONFS" | grep $1` fi diff --git a/ProductionTools/installed/castor.logsfreq b/ProductionTools/installed/castor.logsfreq index 9300cb0fc3c5bef6a960c221b66c57cc388fbd0c..1b8945bab0b9bc7e3f92d2ac5d57a00e31e281f3 100755 --- a/ProductionTools/installed/castor.logsfreq +++ b/ProductionTools/installed/castor.logsfreq @@ -13,7 +13,7 @@ if [ x"$2" != x ]; then NB_DAYS=$2 fi -CASTOR_CONFS="`cat castor.confs`" +CASTOR_CONFS="`cat ~/castor.confs`" if [ x"$3" != x ]; then CASTOR_CONFS=`echo -e "$CASTOR_CONFS" | grep $3` fi diff --git a/ProductionTools/installed/castor.notrunning b/ProductionTools/installed/castor.notrunning index 4e1b2afd99c24bc88561b63388ffe31eeb20652f..4aecffa512486cd4bef6856899c8cc13c2245534 100755 --- a/ProductionTools/installed/castor.notrunning +++ b/ProductionTools/installed/castor.notrunning @@ -1,5 +1,5 @@ #!/usr/bin/env bash -for c in `cat castor.confs`; do +for c in `cat ~/castor.confs`; do m=`echo $c | awk -F '/' '{print $4}'` ssh -x -o ConnectTimeout=1 $m "ps -ef | grep CastorScript | grep $c | grep -v grep &>/dev/null || echo \"not running: $m $c\"" done diff --git a/ProductionTools/installed/castor.ps b/ProductionTools/installed/castor.ps index de06aa73180f79689c679e682dfb97b42a5cc30c..ea7bb640034d0482d1487d45d093492124582456 100755 --- a/ProductionTools/installed/castor.ps +++ b/ProductionTools/installed/castor.ps @@ -1,5 +1,5 @@ #!/usr/bin/env bash -for c in `cat castor.machines`; do +for c in `cat ~/castor.machines`; do echo "$c" ssh -x -o ConnectTimeout=1 $c "ps -ef | grep CastorScript | grep -v grep" done diff --git a/ProductionTools/installed/castor.starttime b/ProductionTools/installed/castor.starttime index b2c50efb9fb2b2e4751e4759586252233998cf89..6f2933936739687dcd4471479c5fc8236c7a17fa 100755 --- a/ProductionTools/installed/castor.starttime +++ b/ProductionTools/installed/castor.starttime @@ -1,4 +1,4 @@ #!/usr/bin/env bash -for c in `cat castor.machines`; do +for c in `cat ~/castor.machines`; do ssh -x -o ConnectTimeout=1 $c "ps -eo lstart,args | grep CastorScript | grep -v grep" done diff --git a/ProductionTools/installed/castor.stopall b/ProductionTools/installed/castor.stopall index 7c505451c4647f7f43e851b1c3ca952169959449..4afd24c76a8e38e60a855d6a31575cab64380ad9 100755 --- a/ProductionTools/installed/castor.stopall +++ b/ProductionTools/installed/castor.stopall @@ -1,5 +1,5 @@ #!/usr/bin/env bash -for c in `cat castor.machines`; do +for c in `cat ~/castor.machines`; do echo "$c" ssh -x -o ConnectTimeout=1 $c "/sw/castor/tools/castor.signal 12" done diff --git a/ProductionTools/installed/castor.updateconflist b/ProductionTools/installed/castor.updateconflist index 15ee8c3599cf46799e03e43b07e0c9dfbcd88225..fa19699eb5d2690bc13f0c41c6387e57bda0dcb5 100755 --- a/ProductionTools/installed/castor.updateconflist +++ b/ProductionTools/installed/castor.updateconflist @@ -1,7 +1,7 @@ #!/usr/bin/env bash -find /daq_area/castor/*/atlascdr/ -name '*.cfg' > castor.confs -find /mnt/daq_area_rw/castor/*/atlascdr/ -name '*.cfg' > castor.WRITABLE.confs -awk -F'/' '{print $4}' < castor.confs | sort | uniq > castor.machines +find /daq_area/castor/*/atlascdr/ -name '*.cfg' > ~/castor.confs +find /mnt/daq_area_rw/castor/*/atlascdr/ -name '*.cfg' > ~/castor.WRITABLE.confs +awk -F'/' '{print $4}' < ~/castor.confs | sort | uniq > ~/castor.machines # Machines on which there are several instances # awk -F'/' '{print $4}' < castor.confs | sort | uniq -d