mirror of
https://gitlab.com/manzerbredes/ina260-zmq-publisher.git
synced 2025-04-06 03:46:25 +02:00
Minor changes
This commit is contained in:
parent
9ba1763b4f
commit
d27e0e652b
1 changed files with 24 additions and 0 deletions
24
.clusterman_onoff.sh
Normal file
24
.clusterman_onoff.sh
Normal file
|
@ -0,0 +1,24 @@
|
||||||
|
#!/usr/bin/env bash
|
||||||
|
# This script assumes that the keys used by publishers
|
||||||
|
# corresponds to the UNIQUE hostname of each monitored node
|
||||||
|
|
||||||
|
# Check parameters
|
||||||
|
[ $# -ne 1 ] && { echo "Usage: $0 [on|off]"; exit 1; }
|
||||||
|
if [ "$1" != "on" ]
|
||||||
|
then
|
||||||
|
[ "$1" != "off" ] && { echo "Usage: $0 [on|off]"; exit 1; }
|
||||||
|
fi
|
||||||
|
|
||||||
|
# Load configuration
|
||||||
|
wai=$(dirname $(readlink -f "$0")) # Current script directory
|
||||||
|
source ${wai}/config.mk
|
||||||
|
source ${wai}/.clusterman.sh.conf
|
||||||
|
|
||||||
|
# Loop over names
|
||||||
|
for value in "${nodes[@]}"; do
|
||||||
|
node=$(echo "$value"|cut -d "/" -f 1)
|
||||||
|
ina260=$(echo "$value"|cut -d "/" -f 2)
|
||||||
|
ip=$(clusterman node list -g $node)
|
||||||
|
[ "$1" == "off" ] && ssh testbed@${ip} touch ina260-zmq-publisher/publisher_${ina260}_break
|
||||||
|
[ "$1" == "on" ] && ssh testbed@${ip} rm -f ina260-zmq-publisher/publisher_${ina260}_break
|
||||||
|
done
|
Loading…
Add table
Reference in a new issue