From 64fc99b7e398c2d4508583f7192afe60281d3f0e Mon Sep 17 00:00:00 2001 From: "Bryn M. Reeves" Date: Tue, 30 Apr 2013 13:11:41 +0100 Subject: Enable filesys plug-in on Debian Signed-off-by: Bryn M. Reeves --- sos/plugins/filesys.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sos/plugins/filesys.py b/sos/plugins/filesys.py index 45a49e6b..0ca3166d 100644 --- a/sos/plugins/filesys.py +++ b/sos/plugins/filesys.py @@ -12,12 +12,12 @@ ## 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, UbuntuPlugin +from sos.plugins import Plugin, RedHatPlugin, DebianPlugin, UbuntuPlugin import os import re from itertools import * -class Filesys(Plugin, RedHatPlugin, UbuntuPlugin): +class Filesys(Plugin, RedHatPlugin, DebianPlugin, UbuntuPlugin): """information on filesystems """ -- cgit