From cdf5ab45e46c33504f0f0ff6b92fa972208974d3 Mon Sep 17 00:00:00 2001 From: "Bryn M. Reeves" Date: Fri, 26 Apr 2013 17:51:19 +0100 Subject: Make printing default log size limit consistent The default log size limit is 15M for most plug-ins. The printing plug-in uses 50M. Set it to 15M to avoid very large reports. Signed-off-by: Bryn M. Reeves --- sos/plugins/printing.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sos/plugins/printing.py b/sos/plugins/printing.py index 0c3e29b8..30161fc9 100644 --- a/sos/plugins/printing.py +++ b/sos/plugins/printing.py @@ -21,7 +21,7 @@ class Printing(Plugin, RedHatPlugin, DebianPlugin, UbuntuPlugin): plugin_name = 'printing' option_list = [("cups", "max size (MiB) to collect per cups log file", - "", 50)] + "", 15)] def setup(self): self.add_copy_specs([ -- cgit