aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBryn M. Reeves <bmr@redhat.com>2019-03-26 10:27:32 +0000
committerBryn M. Reeves <bmr@redhat.com>2019-03-26 10:27:32 +0000
commit40b315d8626dcc8d9ac52d6b44fc7666b100b6b9 (patch)
tree8daea16869ce1e6cf5653729be0b57b1da1fd908
parentd80c999ce0089e8326ee090d48308ed76dca363b (diff)
downloadsos-40b315d8626dcc8d9ac52d6b44fc7666b100b6b9.tar.gz
[pacemaker] add sbd configuration and full status
Signed-off-by: Bryn M. Reeves <bmr@redhat.com>
-rw-r--r--sos/plugins/pacemaker.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/sos/plugins/pacemaker.py b/sos/plugins/pacemaker.py
index 24135d61..a1b64ea5 100644
--- a/sos/plugins/pacemaker.py
+++ b/sos/plugins/pacemaker.py
@@ -45,7 +45,7 @@ class Pacemaker(Plugin):
self.add_cmd_output([
"pcs config",
"pcs status --full",
- "pcs stonith sbd status",
+ "pcs stonith sbd status --full",
"pcs stonith sbd watchdog list",
"pcs stonith history show",
"pcs quorum status",
@@ -142,6 +142,7 @@ class RedHatPacemaker(Pacemaker, RedHatPlugin):
def setup(self):
self.envfile = "/etc/sysconfig/pacemaker"
self.setup_pcs()
+ self.add_copy_spec("/etc/sysconfig/sbd")
super(RedHatPacemaker, self).setup()
def postproc(self):