aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBryn M. Reeves <bmr@redhat.com>2013-04-03 08:45:05 -0700
committerBryn M. Reeves <bmr@redhat.com>2013-04-03 08:45:05 -0700
commitc7d9defd123608e0cf9289df0f0fca3e4132016f (patch)
treeee2dcf9e1f60054ab3fb7cd8264f160630ba8933
parent29698e09d5bd2b3763e41dc707f423706a817ecd (diff)
parent8ff1c5f1d7cfc88a2ff8be660d487ccd5c445127 (diff)
downloadsos-c7d9defd123608e0cf9289df0f0fca3e4132016f.tar.gz
Merge pull request #111 from rubeon/master
Added plugin for landscape client on Ubuntu.
-rw-r--r--sos/plugins/landscape.py72
1 files changed, 72 insertions, 0 deletions
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