From 3e4c6b9546b18b795280b13de57a40860dc6db5d Mon Sep 17 00:00:00 2001 From: "Bryn M. Reeves" Date: Wed, 28 Mar 2018 17:14:48 +0100 Subject: [filesys] tidy up file list and collect /prof/fs Signed-off-by: Bryn M. Reeves --- sos/plugins/filesys.py | 5 +++-- 1 file 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") -- cgit