aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBryn M. Reeves <bmr@redhat.com>2013-04-30 13:11:41 +0100
committerBryn M. Reeves <bmr@redhat.com>2013-04-30 13:11:41 +0100
commit64fc99b7e398c2d4508583f7192afe60281d3f0e (patch)
treeb321b346043fbd4f8d0cfbb1a55d276366d1c281
parenta89913b2d3ab40804d9805a7f45eb6b0c290f9dc (diff)
downloadsos-64fc99b7e398c2d4508583f7192afe60281d3f0e.tar.gz
Enable filesys plug-in on Debian
Signed-off-by: Bryn M. Reeves <bmr@redhat.com>
-rw-r--r--sos/plugins/filesys.py4
1 files 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
"""