diff options
author | Kaleb S. KEITHLEY <kkeithle@redhat.com> | 2020-04-14 07:59:22 -0400 |
---|---|---|
committer | Kaleb S. KEITHLEY <kkeithle@redhat.com> | 2020-04-14 08:04:36 -0400 |
commit | 0abdd69636c42ec410a0615763f5c2ca4dca8f75 (patch) | |
tree | 4899f7ed20d87c1bfe700fc6ea3b45e465803076 /extras | |
parent | 43ed6fa34b259b568ae1442b65a5004a894a2654 (diff) |
common-ha: cluster status shows "FAILOVER" when actually HEALTHY
pacemaker devs change the format of the ouput of `pcs status`
Expected to find a line in the format:
Online: ....
but now it's
* Online: ...
And the `grep -E "^Online:" no longer finds the list of nodes that
are online.
Change-Id: If2aa1e7b53c766c625d7b4cc222a83ea2c0bd72d
Fixes: #1169
Signed-off-by: Kaleb S. KEITHLEY <kkeithle@redhat.com>
Diffstat (limited to 'extras')
-rw-r--r-- | extras/ganesha/scripts/ganesha-ha.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/extras/ganesha/scripts/ganesha-ha.sh b/extras/ganesha/scripts/ganesha-ha.sh index 0b0050a621d..df333a19f94 100644 --- a/extras/ganesha/scripts/ganesha-ha.sh +++ b/extras/ganesha/scripts/ganesha-ha.sh @@ -935,7 +935,7 @@ status() done # print the nodes that are expected to be online - grep -E "^Online:" ${scratch} + grep -E "Online:" ${scratch} echo |