From a3d60c2c71ed87f02492c153346b72602f356cc0 Mon Sep 17 00:00:00 2001 From: Pavel Moravec Date: Thu, 7 Feb 2019 10:26:32 +0100 Subject: [filesys,ldap,systemd] fix implicit string concatenation Relevant to: #1559 Signed-off-by: Pavel Moravec --- sos/plugins/filesys.py | 2 +- sos/plugins/ldap.py | 2 +- 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" ]) -- cgit