aboutsummaryrefslogtreecommitdiffstats
path: root/sos/plugins/cobbler.py
diff options
context:
space:
mode:
Diffstat (limited to 'sos/plugins/cobbler.py')
-rw-r--r--sos/plugins/cobbler.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/sos/plugins/cobbler.py b/sos/plugins/cobbler.py
index c1a05147..d17b8020 100644
--- a/sos/plugins/cobbler.py
+++ b/sos/plugins/cobbler.py
@@ -12,9 +12,9 @@
## along with this program; if not, write to the Free Software
## Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
-import sos.plugintools
+from sos.plugins import Plugin, RedHatPlugin
-class cobbler(sos.plugintools.PluginBase):
+class cobbler(Plugin, RedHatPlugin):
"""cobbler related information
"""
def checkenabled(self):
@@ -23,5 +23,5 @@ class cobbler(sos.plugintools.PluginBase):
def setup(self):
self.addCopySpec("/etc/cobbler")
self.addCopySpec("/var/log/cobbler")
- self.addCopySpec("/var/lib/rhn/kickstarts")
+ self.addCopySpec("/var/lib/rhn/kickstarts")
self.addCopySpec("/var/lib/cobbler")