diff options
author | pcarrier <pcarrier@ef72aa8b-4018-0410-8976-d6e080ef94d8> | 2010-11-19 13:12:46 +0000 |
---|---|---|
committer | pcarrier <pcarrier@ef72aa8b-4018-0410-8976-d6e080ef94d8> | 2010-11-19 13:12:46 +0000 |
commit | a89e9c86b7475dfad0f25b43f43cd63c0c69a828 (patch) | |
tree | 2f33c20d97f870a52c50acfd8c05f5aca6c4e7b5 | |
parent | 0bab0369ab556c8e167122b74828298115ed7c7f (diff) | |
download | sos-a89e9c86b7475dfad0f25b43f43cd63c0c69a828.tar.gz |
Collect /bin/findmnt, appeared in F14
git-svn-id: svn+ssh://svn.fedorahosted.org/svn/sos/trunk@1009 ef72aa8b-4018-0410-8976-d6e080ef94d8
-rw-r--r-- | sos/plugins/filesys.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sos/plugins/filesys.py b/sos/plugins/filesys.py index 3a9a9f13..a84a9c3e 100644 --- a/sos/plugins/filesys.py +++ b/sos/plugins/filesys.py @@ -33,6 +33,7 @@ class filesys(sos.plugintools.PluginBase): mounts = self.collectOutputNow("/bin/mount -l", root_symlink = "mount") self.addCopySpec("/etc/mdadm.conf") + self.collectExtOutput("/bin/findmnt") self.collectExtOutput("/bin/df -al", root_symlink = "df") if self.getOption('lsof'): self.collectExtOutput("/usr/sbin/lsof -b +M -n -l -P", root_symlink = "lsof") |