aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBryn M. Reeves <bmr@redhat.com>2012-12-06 12:16:54 +0000
committerBryn M. Reeves <bmr@redhat.com>2012-12-06 12:16:54 +0000
commit65fc63866cdb14490771064f65cebb1fe1c7e9cb (patch)
tree0fc84bd60db318827442c7400e537fe4b7c20f36
parent9a9be601e4978a36bfa50870f2fbaf073d73ce35 (diff)
downloadsos-65fc63866cdb14490771064f65cebb1fe1c7e9cb.tar.gz
Add Red Hat Update Infrastructure module
-rw-r--r--sos/plugins/rhui.py43
1 files changed, 43 insertions, 0 deletions
diff --git a/sos/plugins/rhui.py b/sos/plugins/rhui.py
new file mode 100644
index 00000000..89462af7
--- /dev/null
+++ b/sos/plugins/rhui.py
@@ -0,0 +1,43 @@
+### This program is free software; you can redistribute it and/or modify
+## it under the terms of the GNU General Public License as published by
+## the Free Software Foundation; either version 2 of the License, or
+## (at your option) any later version.
+
+## This program is distributed in the hope that it will be useful,
+## but WITHOUT ANY WARRANTY; without even the implied warranty of
+## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+## GNU General Public License for more details.
+
+## You should have received a copy of the GNU General Public License
+## along with this program; if not, write to the Free Software
+## Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+
+from sos.plugins import Plugin, RedHatPlugin
+import os
+
+class rhui(Plugin, RedHatPlugin):
+ """Red Hat Update Infrastructure for Cloud Providers data
+ """
+
+ rhui_debug_path = "/usr/share/rh-rhua/rhui-debug.py"
+
+ packages = [ "rh-rhui-tools" ]
+ files = [ rhui_debug_path ]
+
+ def setup(self):
+ if self.isInstalled("pulp-cds"):
+ cds = "--cds"
+ else:
+ cds = ""
+
+ rhui_debug_dst_path = os.path.join(self.cInfo['dstroot'],
+ self.cInfo['cmddir'], self.name())
+ try:
+ os.mkdir(rhui_debug_dst_path)
+ except:
+ return
+
+ self.collectExtOutput("python %s %s --dir %s"
+ % (self.rhui_debug_path, cds, rhui_debug_dst_path),
+ suggest_filename="rhui-debug")
+ return