diff options
author | Alejandro Santoyo <alejandro.santoyo@canonical.com> | 2023-06-21 11:52:39 +0200 |
---|---|---|
committer | Jake Hunsaker <jacob.r.hunsaker@gmail.com> | 2023-06-22 09:30:37 -0400 |
commit | 4b01c28478e0edf77d3d2764840b2f296e9f19c2 (patch) | |
tree | 11de6fef4ca13acd9e37dc3e1de366df74688437 | |
parent | bf145bdbf06e6bd4b5941e8239a140f788f55a0e (diff) | |
download | sos-4b01c28478e0edf77d3d2764840b2f296e9f19c2.tar.gz |
[maas] adding configuration file collection
Adding the below paths to collection as they are useful to
troubleshoot some issues.
"/var/lib/maas/http/*.conf"
"/var/lib/maas/*.conf"
"/var/lib/maas/rsyslog"
Resolves #3280
Signed-off-by: Alejandro Santoyo <alejandro.santoyo@canonical.com>
-rw-r--r-- | sos/report/plugins/maas.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/sos/report/plugins/maas.py b/sos/report/plugins/maas.py index 61b305dc..ca819511 100644 --- a/sos/report/plugins/maas.py +++ b/sos/report/plugins/maas.py @@ -87,6 +87,9 @@ class Maas(Plugin, UbuntuPlugin): "/etc/squid-deb-proxy", "/etc/maas", "/var/lib/maas/dhcp*", + "/var/lib/maas/http/*.conf", + "/var/lib/maas/*.conf", + "/var/lib/maas/rsyslog", "/var/log/apache2*", "/var/log/maas*", "/var/log/upstart/maas-*", |