aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--sos/plugins/krb5.py29
-rw-r--r--sos/plugins/samba.py19
2 files changed, 31 insertions, 17 deletions
diff --git a/sos/plugins/krb5.py b/sos/plugins/krb5.py
new file mode 100644
index 00000000..d9dca896
--- /dev/null
+++ b/sos/plugins/krb5.py
@@ -0,0 +1,29 @@
+## Copyright (C) 2013 Red Hat, Inc., Bryn M. Reeves <bmr@redhat.com>
+
+### 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, DebianPlugin, UbuntuPlugin
+
+class Krb5(Plugin, RedHatPlugin, DebianPlugin, UbuntuPlugin):
+ """Kerberos related information
+ """
+ packages = ('krb5-libs', 'krb5-user')
+ plugin_name = 'krb5'
+
+ def setup(self):
+ self.add_copy_specs([
+ "/etc/krb5.conf",
+ "/etc/krb5.keytab"])
+
diff --git a/sos/plugins/samba.py b/sos/plugins/samba.py
index f3a44b77..f3dc8628 100644
--- a/sos/plugins/samba.py
+++ b/sos/plugins/samba.py
@@ -14,9 +14,10 @@
from sos.plugins import Plugin, RedHatPlugin, DebianPlugin, UbuntuPlugin
-class Samba(Plugin):
+class Samba(Plugin, RedHatPlugin, DebianPlugin, UbuntuPlugin):
"""Samba related information
"""
+ packages = ('samba-common',)
plugin_name = "samba"
def setup(self):
@@ -27,19 +28,3 @@ class Samba(Plugin):
self.add_cmd_output("wbinfo --domain='.' -u")
self.add_cmd_output("testparm -s -v")
-
-class RedHatSamba(Samba, RedHatPlugin):
- """Samba related information for RedHat based distributions
- """
- def setup(self):
- super(RedHatSamba, self).setup()
- # FIXME: krb5 specific
- self.add_copy_specs([
- "/etc/krb5.conf",
- "/etc/krb5.keytab"])
-
-class DebianSamba(Samba, DebianPlugin, UbuntuPlugin):
- """Samba related information for Debian based distributions
- """
- def setup(self):
- super(DebianSamba, self).setup()