diff options
-rw-r--r-- | sos/plugins/pacemaker.py | 3 |
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): |