diff options
author | Bryn M. Reeves <bmr@redhat.com> | 2012-03-09 09:05:00 +0000 |
---|---|---|
committer | Bryn M. Reeves <bmr@redhat.com> | 2012-03-19 18:40:11 +0000 |
commit | 27bea69fcfa13169b2e3267e4aea4a7742ba8091 (patch) | |
tree | 9cba8e6b6c51dc6ff010aed723e1c6f51e2d5a40 | |
parent | 487a8ea2f10b8af0e258b6904509bf9f9cb06bfc (diff) | |
download | sos-rhel-6.3-candidate.tar.gz |
Fix katello and aeolus command string syntaxrhel-6.3-candidate
Resolves: bz752666
-rw-r--r-- | sos/plugins/cloudforms.py | 28 |
1 files changed, 0 insertions, 28 deletions
diff --git a/sos/plugins/cloudforms.py b/sos/plugins/cloudforms.py index 98621330..df63e77f 100644 --- a/sos/plugins/cloudforms.py +++ b/sos/plugins/cloudforms.py @@ -24,31 +24,3 @@ class cloudforms(sos.plugintools.PluginBase): 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)) - -import sos.plugintools -import os - -class cloudforms(sos.plugintools.PluginBase): - """CloudForms related information - """ - - def defaultenabled(self): - return True - - def checkenabled(self): - self.packages = ["katello", "katello-common", - "katello-headpin", "aeolus-conductor"] - self.files = ["/usr/share/katello/script/katello-debug", - "/usr/bin/aeolus-debug"] - return sos.plugintools.PluginBase.checkenabled(self) - - def setup(self): - 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)) - |