summaryrefslogtreecommitdiff
path: root/ctdb/tests/scripts/integration.bash
diff options
context:
space:
mode:
authorMartin Schwenke <martin@meltin.net>2019-07-29 15:40:16 +1000
committerMartin Schwenke <martins@samba.org>2019-08-21 11:50:30 +0000
commit9b09a87326af28877301ad27bcec5bb13744e2b6 (patch)
treee34692b52ed532b2c3f1ebad06845542bc844d45 /ctdb/tests/scripts/integration.bash
parent52227d19735a3305ad633672c70385f443f222f0 (diff)
downloadsamba-9b09a87326af28877301ad27bcec5bb13744e2b6.tar.gz
ctdb-tests: Drop unused node statuses frozen/unfrozen
Silently drop unused local variable mpat. BUG: https://bugzilla.samba.org/show_bug.cgi?id=14085 Signed-off-by: Martin Schwenke <martin@meltin.net> Reviewed-by: Amitay Isaacs <amitay@gmail.com>
Diffstat (limited to 'ctdb/tests/scripts/integration.bash')
-rw-r--r--ctdb/tests/scripts/integration.bash8
1 files changed, 2 insertions, 6 deletions
diff --git a/ctdb/tests/scripts/integration.bash b/ctdb/tests/scripts/integration.bash
index 489cc3b5cdb..c4d5179d902 100644
--- a/ctdb/tests/scripts/integration.bash
+++ b/ctdb/tests/scripts/integration.bash
@@ -322,7 +322,7 @@ node_has_status ()
local pnn="$1"
local status="$2"
- local bits fpat mpat rpat
+ local bits rpat
case "$status" in
unhealthy) bits="?|?|?|1|*" ;;
healthy) bits="?|?|?|0|*" ;;
@@ -334,8 +334,6 @@ node_has_status ()
enabled) bits="?|?|0|*" ;;
stopped) bits="?|?|?|?|1|*" ;;
notstopped) bits="?|?|?|?|0|*" ;;
- frozen) fpat='^[[:space:]]+frozen[[:space:]]+1$' ;;
- unfrozen) fpat='^[[:space:]]+frozen[[:space:]]+0$' ;;
recovered) rpat='^Recovery mode:RECOVERY \(1\)$' ;;
notlmaster) rpat="^hash:.* lmaster:${pnn}\$" ;;
*)
@@ -360,12 +358,10 @@ node_has_status ()
done
return 1
} <<<"$out" # Yay bash!
- elif [ -n "$fpat" ] ; then
- $CTDB statistics -n "$pnn" | egrep -q "$fpat"
elif [ -n "$rpat" ] ; then
! $CTDB status -n "$pnn" | egrep -q "$rpat"
else
- echo 'node_has_status: unknown mode, neither $bits nor $fpat is set'
+ echo 'node_has_status: unknown mode, neither $bits nor $rpat is set'
return 1
fi
}