diff options
-rw-r--r-- | sos/plugins/cloudforms.py | 18 |
1 files changed, 13 insertions, 5 deletions
diff --git a/sos/plugins/cloudforms.py b/sos/plugins/cloudforms.py index 440f5512..db66d269 100644 --- a/sos/plugins/cloudforms.py +++ b/sos/plugins/cloudforms.py @@ -20,10 +20,18 @@ class cloudforms(Plugin, RedHatPlugin): """CloudForms related information """ - packages = ["katello"] + packages = ["katello", "katello-common", + "katello-headpin", "aeoleus-conductor"] + files = ["/usr/share/katello/script/katello-debug", + "/usr/bin/aeolus-debug"] def setup(self): - katello_debug = "/usr/share/katello/scripts/katello-debug" - self.collectExtOutput("%s -d %s" \ - % (katello_debug, - os.path.join(self.cInfo['dstroot'],"cloudforms"))) + katello_debug = "/usr/share/katello/script/katello-debug" + aeolus_debug = "/usr/bin/aeolus-debug" + if os.path.isfile(katello_debug): + katello_debug_path = os.path.join(self.cInfo['dstroot'],"katello-debug") + self.collectExtOutput("%s --notar -d %s" % (katello_debug, katello_debug_path)) + if os.path.isfile(aeolus_debug): + aeolus_debug_path = os.path.join(self.cInfo['dstroot'],"aeolus-debug") + self.collectExtOutput("%s --notar -d %s" % (aeolus_debug, aeolus_debug_path)) + |