diff options
author | astokes <astokes@ef72aa8b-4018-0410-8976-d6e080ef94d8> | 2008-06-26 14:14:05 +0000 |
---|---|---|
committer | astokes <astokes@ef72aa8b-4018-0410-8976-d6e080ef94d8> | 2008-06-26 14:14:05 +0000 |
commit | 5349c950e9a6ac8fbed83b10ab2cb1c4442e31e4 (patch) | |
tree | 8cf5cc7391f2c8d8d499c073a956b0849ba1ad17 /src/lib | |
parent | 9f6a45cc5636680156f187c1a9295769ed8a49eb (diff) | |
download | sos-5349c950e9a6ac8fbed83b10ab2cb1c4442e31e4.tar.gz |
resolves: rhbz443037
git-svn-id: svn+ssh://svn.fedorahosted.org/svn/sos/trunk@494 ef72aa8b-4018-0410-8976-d6e080ef94d8
Diffstat (limited to 'src/lib')
-rw-r--r-- | src/lib/sos/plugins/filesys.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/sos/plugins/filesys.py b/src/lib/sos/plugins/filesys.py index 93645314..3e3a7fba 100644 --- a/src/lib/sos/plugins/filesys.py +++ b/src/lib/sos/plugins/filesys.py @@ -34,6 +34,6 @@ class filesys(sos.plugintools.PluginBase): self.collectExtOutput("/sbin/fdisk -l", root_symlink = "fdisk-l") for extfs in self.doRegexFindAll(r"^(/dev/.+) on .+ type ext.\s+", mounts): - self.collectExtOutput("/sbin/tune2fs -l %s" % (extfs)) + self.collectExtOutput("/sbin/dumpe2fs %s" % (extfs)) return |