From c23a3ffe7fae35df2e534c6205ee4d2ebcc0104e Mon Sep 17 00:00:00 2001 From: "Bryn M. Reeves" Date: Thu, 18 Apr 2013 15:41:34 +0100 Subject: Fix auditd command line options The refactoring in the previous merge commit introduced a bug in the option handling for the auditd plugin ('syslogsize' instead of 'logsize' when referencing the option in setup()). Signed-off-by: Bryn M. Reeves --- sos/plugins/auditd.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sos/plugins/auditd.py b/sos/plugins/auditd.py index 6bc6bf49..f0eb8a5c 100644 --- a/sos/plugins/auditd.py +++ b/sos/plugins/auditd.py @@ -25,4 +25,4 @@ class auditd(Plugin, RedHatPlugin, DebianPlugin, UbuntuPlugin): self.add_copy_specs(["/etc/audit/auditd.conf", "/etc/audit/audit.rules"]) self.add_copy_spec_limit("/var/log/audit*", - sizelimit = self.get_option("syslogsize")) + sizelimit = self.get_option("logsize")) -- cgit