diff options
-rw-r--r-- | sos/plugins/filesys.py | 2 | ||||
-rw-r--r-- | sos/plugins/ldap.py | 2 | ||||
-rw-r--r-- | sos/plugins/systemd.py | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/sos/plugins/filesys.py b/sos/plugins/filesys.py index 78aa1d6a..61b3d8d2 100644 --- a/sos/plugins/filesys.py +++ b/sos/plugins/filesys.py @@ -25,7 +25,7 @@ class Filesys(Plugin, DebianPlugin, UbuntuPlugin): def setup(self): self.add_copy_spec([ "/proc/fs/", - "/proc/mounts" + "/proc/mounts", "/proc/filesystems", "/proc/self/mounts", "/proc/self/mountinfo", diff --git a/sos/plugins/ldap.py b/sos/plugins/ldap.py index 34058971..6c9e418c 100644 --- a/sos/plugins/ldap.py +++ b/sos/plugins/ldap.py @@ -76,7 +76,7 @@ class DebianLdap(Ldap, DebianPlugin, UbuntuPlugin): self.add_copy_spec([ self.ldap_conf, "/etc/slapd.conf", - "/etc/ldap/slapd.d" + "/etc/ldap/slapd.d", "/etc/nslcd.conf", ]) diff --git a/sos/plugins/systemd.py b/sos/plugins/systemd.py index e251747f..5606fb29 100644 --- a/sos/plugins/systemd.py +++ b/sos/plugins/systemd.py @@ -67,7 +67,7 @@ class Systemd(Plugin, RedHatPlugin, DebianPlugin, UbuntuPlugin): "/run/systemd/seats", "/run/systemd/sessions", "/run/systemd/system", - "/run/systemd/users" + "/run/systemd/users", "/etc/modules-load.d/*.conf", "/etc/yum/protected.d/systemd.conf" ]) |