diff options
author | Pavel Moravec <pmoravec@redhat.com> | 2019-02-07 10:26:32 +0100 |
---|---|---|
committer | Bryn M. Reeves <bmr@redhat.com> | 2019-03-20 15:57:20 +0000 |
commit | a3d60c2c71ed87f02492c153346b72602f356cc0 (patch) | |
tree | bbe7724562fd8d2aa5747d3bcfa938469f69101a | |
parent | 27bdbf8fdd92326b04da8a9ff80d1aceeb32377a (diff) | |
download | sos-a3d60c2c71ed87f02492c153346b72602f356cc0.tar.gz |
[filesys,ldap,systemd] fix implicit string concatenation
Relevant to: #1559
Signed-off-by: Pavel Moravec <pmoravec@redhat.com>
-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" ]) |