Minor changes

This commit is contained in:
Loïc Guégan 2024-01-21 11:07:50 +01:00
parent 0d8b138f10
commit bcd7e7f5ff
3 changed files with 41 additions and 1 deletions

View file

@ -1,4 +1,27 @@
#!Usr/bin/env bash #!Usr/bin/env bash
declare -A nodes declare -A nodes
nodes["testbed-node-1"]="bbb1/2-0041"
# BBB1
nodes["node-pi-1"]="bbb1/2-0041"
nodes["node-pi-2"]="bbb1/2-0042"
nodes["node-pi-3"]="bbb1/2-0043"
nodes["node-pi-4"]="bbb1/2-0040"
# BBB2
nodes["node-pi-6"]="bbb2/2-0041"
nodes["node-pi-8"]="bbb2/2-0047"
nodes["node-pi-7"]="bbb2/2-004f"
nodes["node-pi-5"]="bbb2/2-0040"
# BBB3
nodes["node-pi-9"]="bbb3/2-0048"
nodes["node-pi-10"]="bbb3/2-0044"
nodes["node-pi-11"]="bbb3/2-0045"
nodes["node-pi-12"]="bbb3/2-0046"
# BBB4
nodes["node-pi-13"]="bbb4/2-0042"
nodes["node-pi-14"]="bbb4/2-004b"
nodes["node-pi-15"]="bbb4/2-0040"
nodes["node-pi-16"]="bbb4/2-0049"

6
.clusterman_unique.sh Normal file
View file

@ -0,0 +1,6 @@
#!/usr/bin/env bash
# Load configuration
wai=$(dirname $(readlink -f "$0")) # Current script directory
$wai/.clusterman.sh $@ | $wai/.power_unique.sh

11
.power_unique.sh Normal file
View file

@ -0,0 +1,11 @@
#!/usr/bin/env bash
tmp=$(mktemp)
while IFS= read -r line; do
echo $line >> $tmp
done
last_line=$(cat $tmp | tail -n1)
cat $tmp | awk -F"," 'BEGIN{LAST=-1;skipped=0} {if(LAST!=$3){print $1","$2","$3;skipped=0}else{skipped=1} LAST=$3} END{if(skipped){print "'$last_line'"}}'
rm $tmp