From 3eecbc5b6a4fda178fabe28b2e62752f54bbeea5 Mon Sep 17 00:00:00 2001 From: Adam Stokes Date: Tue, 5 Nov 2013 01:05:43 -0500 Subject: maas: Dont capture everything /var/lib/maas ephermeral images and other pickled objects are stored here which can increase the sosreport archive to well over 2G. so only capture the readable files which is only the dhcp leases and dhcp interface file. Signed-off-by: Adam Stokes --- sos/plugins/maas.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sos/plugins/maas.py b/sos/plugins/maas.py index 018ef75d..2fd6be35 100644 --- a/sos/plugins/maas.py +++ b/sos/plugins/maas.py @@ -25,7 +25,7 @@ class Maas(Plugin, UbuntuPlugin): def setup(self): self.add_copy_specs(["/etc/squid-deb-proxy", "/etc/maas", - "/var/lib/maas", + "/var/lib/maas/dhcp*", "/var/log/maas*"]) self.add_cmd_output("maas dumpdata") -- cgit