diff options
author | Bryn M. Reeves <bmr@redhat.com> | 2013-04-26 17:51:19 +0100 |
---|---|---|
committer | Bryn M. Reeves <bmr@redhat.com> | 2013-04-26 17:51:19 +0100 |
commit | cdf5ab45e46c33504f0f0ff6b92fa972208974d3 (patch) | |
tree | 7bdd510422fce63b974dfce731d2d9a8e57ae582 | |
parent | 44948f8a3eb6bc3430698a4e8ecb541fc941cfa6 (diff) | |
download | sos-cdf5ab45e46c33504f0f0ff6b92fa972208974d3.tar.gz |
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 <bmr@redhat.com>
-rw-r--r-- | sos/plugins/printing.py | 2 |
1 files changed, 1 insertions, 1 deletions
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([ |