b760035b15
- Resolves: rhbz2102292
47 lines
1.8 KiB
Diff
47 lines
1.8 KiB
Diff
From 5b6280ac1a213e176aee6d61945b3283ea060a88 Mon Sep 17 00:00:00 2001
|
|
From: Petr Pavlu <petr.pavlu@suse.com>
|
|
Date: Tue, 24 May 2022 18:02:31 +0200
|
|
Subject: [PATCH] Feature: tools: report CRM feature set of nodes by crm_mon
|
|
|
|
Enable crm_mon to report when CRM feature set is not consistent among
|
|
online nodes and output a version of each node if --show-detail is
|
|
specified.
|
|
---
|
|
xml/api/crm_mon-2.21.rng | 3 +
|
|
xml/api/nodes-2.21.rng | 3 +
|
|
9 files changed, 508 insertions(+), 125 deletions(-)
|
|
create mode 100644 cts/cli/crm_mon-feature_set.xml
|
|
create mode 100644 cts/cli/regression.feature_set.exp
|
|
|
|
diff --git a/xml/api/crm_mon-2.21.rng b/xml/api/crm_mon-2.21.rng
|
|
index 37036d665..e99bcc3d7 100644
|
|
--- a/xml/api/crm_mon-2.21.rng
|
|
+++ b/xml/api/crm_mon-2.21.rng
|
|
@@ -54,6 +54,9 @@
|
|
<attribute name="with_quorum"> <data type="boolean" /> </attribute>
|
|
</group>
|
|
</optional>
|
|
+ <optional>
|
|
+ <attribute name="mixed_version"> <data type="boolean" /> </attribute>
|
|
+ </optional>
|
|
</element>
|
|
</optional>
|
|
<optional>
|
|
diff --git a/xml/api/nodes-2.21.rng b/xml/api/nodes-2.21.rng
|
|
index df4c77f37..7e236ba63 100644
|
|
--- a/xml/api/nodes-2.21.rng
|
|
+++ b/xml/api/nodes-2.21.rng
|
|
@@ -25,6 +25,9 @@
|
|
</choice>
|
|
</attribute>
|
|
</optional>
|
|
+ <optional>
|
|
+ <attribute name="feature_set"> <text/> </attribute>
|
|
+ </optional>
|
|
<attribute name="shutdown"> <data type="boolean" /> </attribute>
|
|
<attribute name="expected_up"> <data type="boolean" /> </attribute>
|
|
<attribute name="is_dc"> <data type="boolean" /> </attribute>
|
|
--
|
|
2.31.1
|
|
|