diff options
-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") |