diff options
author | Bryn M. Reeves <bmr@redhat.com> | 2018-03-28 17:14:48 +0100 |
---|---|---|
committer | Bryn M. Reeves <bmr@redhat.com> | 2018-03-28 17:17:33 +0100 |
commit | 3e4c6b9546b18b795280b13de57a40860dc6db5d (patch) | |
tree | ee6e47721674a451f20c6ee69b97cc539e07aa55 | |
parent | 4b35f90160e01f8df578ec7bbe67e66e41f9168a (diff) | |
download | sos-3e4c6b9546b18b795280b13de57a40860dc6db5d.tar.gz |
[filesys] tidy up file list and collect /prof/fs
Signed-off-by: Bryn M. Reeves <bmr@redhat.com>
-rw-r--r-- | sos/plugins/filesys.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/sos/plugins/filesys.py b/sos/plugins/filesys.py index 53ca17e1..75beb5a1 100644 --- a/sos/plugins/filesys.py +++ b/sos/plugins/filesys.py @@ -30,12 +30,13 @@ class Filesys(Plugin, RedHatPlugin, DebianPlugin, UbuntuPlugin): def setup(self): self.add_copy_spec([ + "/proc/fs/", + "/proc/mounts" "/proc/filesystems", - "/etc/fstab", "/proc/self/mounts", "/proc/self/mountinfo", "/proc/self/mountstats", - "/proc/mounts" + "/etc/fstab", ]) self.add_cmd_output("mount -l", root_symlink="mount") self.add_cmd_output("df -al -x autofs", root_symlink="df") |