diff options
-rw-r--r-- | sos/plugins/rhn.py | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/sos/plugins/rhn.py b/sos/plugins/rhn.py index 27223fbf..236d49de 100644 --- a/sos/plugins/rhn.py +++ b/sos/plugins/rhn.py @@ -66,15 +66,18 @@ class rhn(Plugin, RedHatPlugin): "/var/log/nocpulse/TSDBLocalQueue/TSDBLocalQueue.log"]) self.addCopySpec("/root/ssl-build") - self.collectExtOutput("/usr/bin/rhn-schema-version", root_symlink = "database-schema-version") - self.collectExtOutput("/usr/bin/rhn-charsets", root_symlink = "database-character-sets") + self.collectExtOutput("/usr/bin/rhn-schema-version", + root_symlink = "database-schema-version") + self.collectExtOutput("/usr/bin/rhn-charsets", + root_symlink = "database-character-sets") if self.satellite: self.addCopySpecs(["/etc/tnsnames.ora", "/etc/jabberd", "/etc/tomcat6/", "/var/log/tomcat6/"]) if os.path.exists("/usr/bin/spacewalk-debug"): self.collectExtOutput("/usr/bin/spacewalk-debug --dir %s" - % os.path.join(self.cInfo['dstroot'], "sos_commands/rhn")) + % os.path.join(self.cInfo['dstroot'], + "sos_commands/rhn")) if self.proxy: self.addCopySpecs(["/etc/squid", "/var/log/squid"]) |