diff options
author | Bryn M. Reeves <bmr@redhat.com> | 2013-08-01 16:43:43 +0100 |
---|---|---|
committer | Bryn M. Reeves <bmr@redhat.com> | 2013-08-01 16:52:05 +0100 |
commit | 9042ad455c31ad4cb007b1b34f7d475331ef99e0 (patch) | |
tree | 8ea9a75663ec3df84f1026d5c8e40c3eb86a4a11 | |
parent | 57e120b3ab5be7af7165de8ca94f467c0de155fc (diff) | |
download | sos-9042ad455c31ad4cb007b1b34f7d475331ef99e0.tar.gz |
Split kerberos data collection into separate plug-in
The krb5 data collection in the samba plug-in is misplaced. Since
this is collecting information about the system keytab move it
to its own plug-in that can be activated on any kerberos enabled
system.
Signed-off-by: Bryn M. Reeves <bmr@redhat.com>
-rw-r--r-- | sos/plugins/krb5.py | 29 | ||||
-rw-r--r-- | sos/plugins/samba.py | 19 |
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() |