aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--sos/plugins/general.py8
-rw-r--r--sos/plugins/juju.py2
-rw-r--r--sos/plugins/landscape.py72
3 files changed, 77 insertions, 5 deletions
diff --git a/sos/plugins/general.py b/sos/plugins/general.py
index ef78bde1..9979cfec 100644
--- a/sos/plugins/general.py
+++ b/sos/plugins/general.py
@@ -15,7 +15,7 @@
import os
from sos.plugins import Plugin, RedHatPlugin, UbuntuPlugin, DebianPlugin
-class general(Plugin):
+class General(Plugin):
"""basic system information"""
plugin_name = "general"
@@ -57,7 +57,7 @@ class general(Plugin):
self.addCmdOutput("/bin/ls -lR /var/lib")
-class RedHatGeneral(general, RedHatPlugin):
+class RedHatGeneral(General, RedHatPlugin):
"""Basic system information for RedHat based distributions"""
def setup(self):
@@ -90,7 +90,7 @@ class RedHatGeneral(general, RedHatPlugin):
r"(\s*proxyPassword\s*=\s*)\S+", r"\1***")
-class DebianGeneral(general, DebianPlugin, UbuntuPlugin):
+class DebianGeneral(General, DebianPlugin):
"""Basic system information for Debian based distributions"""
def setup(self):
@@ -101,7 +101,7 @@ class DebianGeneral(general, DebianPlugin, UbuntuPlugin):
"/var/log/up2date",
"/etc/lsb-release"
])
-class UbuntuGeneral(general, UbuntuPlugin):
+class UbuntuGeneral(General, UbuntuPlugin):
"""Basic system information for Ubuntu based distributions"""
def setup(self):
diff --git a/sos/plugins/juju.py b/sos/plugins/juju.py
index 931eb436..4a6450ba 100644
--- a/sos/plugins/juju.py
+++ b/sos/plugins/juju.py
@@ -20,5 +20,5 @@ class juju(Plugin, UbuntuPlugin):
""" Juju Plugin
"""
def setup(self):
- self.addCopySpecs(["/var/log/juju*",
+ self.addCopySpecs(["/var/log/juju",
"/var/lib/juju"])
diff --git a/sos/plugins/landscape.py b/sos/plugins/landscape.py
new file mode 100644
index 00000000..f544ebb7
--- /dev/null
+++ b/sos/plugins/landscape.py
@@ -0,0 +1,72 @@
+### 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, UbuntuPlugin
+import os
+
+class Landscape(Plugin, UbuntuPlugin):
+ """
+ landscape client related information
+ """
+
+ files = ('/etc/landscape/client.conf',
+ 'broker.log',
+ 'broker.log.gz',
+ 'broker.log.1',
+ 'broker.log.1.gz',
+ 'broker.log.2',
+ 'broker.log.2.gz',
+ 'manager.log',
+ 'manager.log.gz',
+ 'manager.log.1',
+ 'manager.log.1.gz',
+ 'manager.log.2',
+ 'manager.log.2.gz',
+ 'monitor.log',
+ 'monitor.log.gz',
+ 'monitor.log.1',
+ 'monitor.log.1.gz',
+ 'monitor.log.2',
+ 'monitor.log.2.gz',
+ 'package-reporter.log',
+ 'package-reporter.log.gz',
+ 'package-reporter.log.1',
+ 'package-reporter.log.1.gz',
+ 'package-reporter.log.2',
+ 'package-reporter.log.2.gz',
+ 'sysinfo.log',
+ 'sysinfo.log.gz',
+ 'sysinfo.log.1',
+ 'sysinfo.log.1.gz',
+ 'sysinfo.log.2',
+ 'sysinfo.log.2.gz',
+ 'watchdog.log',
+ 'watchdog.log.gz',
+ 'watchdog.log.1',
+ 'watchdog.log.1.gz',
+ 'watchdog.log.2',
+ 'watchdog.log.2.gz'
+ ,)
+ packages = ('landscape-client',)
+
+ def setup(self):
+ self.addCopySpec("/etc/landscape/client.conf")
+
+ def postproc(self):
+ self.doFileSub("/etc/landscape/client.conf",
+ r"registration_password(.*)",
+ r"registration_password[***]"
+ )
+
+ \ No newline at end of file