diff options
author | Ken Gaillot <kgaillot@redhat.com> | 2017-09-19 11:19:33 -0500 |
---|---|---|
committer | Bryn M. Reeves <bmr@redhat.com> | 2018-04-04 16:34:10 +0100 |
commit | 37aeea3449a94a0f703d1f59579fae3dc7d2aef5 (patch) | |
tree | 565aef2bcc0a7a2ce18b9c3cb125bedb1c981621 | |
parent | 55be6b63c7a5df82a39571ff36479f6278e89ff1 (diff) | |
download | sos-37aeea3449a94a0f703d1f59579fae3dc7d2aef5.tar.gz |
[pacemaker] Collect info if only pacemaker-remote is installed
A Pacemaker node may have either pacemaker or pacemaker-remote
installed.
Resolves: #1106
Signed-off-by: Ken Gaillot <kgaillot@redhat.com>
Signed-off-by: Bryn M. Reeves <bmr@redhat.com>
-rw-r--r-- | sos/plugins/pacemaker.py | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/sos/plugins/pacemaker.py b/sos/plugins/pacemaker.py index 5780c813..433570de 100644 --- a/sos/plugins/pacemaker.py +++ b/sos/plugins/pacemaker.py @@ -23,7 +23,10 @@ class Pacemaker(Plugin, DebianPlugin, UbuntuPlugin): plugin_name = "pacemaker" profiles = ("cluster", ) - packages = ["pacemaker"] + packages = ( + "pacemaker", + "pacemaker-remote", + ) defaults = "/etc/default/pacemaker" option_list = [ |