diff options
author | Patrick Talbert <ptalbert@redhat.com> | 2018-02-21 14:56:36 +0100 |
---|---|---|
committer | Bryn M. Reeves <bmr@redhat.com> | 2018-05-09 12:01:54 +0100 |
commit | 501ac9583c6b5be661593bdcb832f5b1a5097c29 (patch) | |
tree | 329e7c508fcb2b53855743552f8af8ba4842605e | |
parent | da268b36028ca3e5ee9ce3cafdd04ebd7bea4a7b (diff) | |
download | sos-501ac9583c6b5be661593bdcb832f5b1a5097c29.tar.gz |
[networking] Capture the complete /etc/NetworkManager/ directory
Previosuly, only the NetworkManager.conf file was recorded. This
misses out on any conf.d/ changes, dispatcher scripts, etc. Add
them.
Resolves: #1221
Signed-off-by: Patrick Talbert <ptalbert@redhat.com>
Signed-off-by: Bryn M. Reeves <bmr@redhat.com>
-rw-r--r-- | sos/plugins/networking.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/sos/plugins/networking.py b/sos/plugins/networking.py index 88a3f954..e27aa97b 100644 --- a/sos/plugins/networking.py +++ b/sos/plugins/networking.py @@ -131,8 +131,7 @@ class Networking(Plugin): "/etc/host*", "/etc/resolv.conf", "/etc/network*", - "/etc/NetworkManager/NetworkManager.conf", - "/etc/NetworkManager/system-connections", + "/etc/NetworkManager/", "/etc/nftables", "/etc/sysconfig/nftables.conf", "/etc/nftables.conf", |