diff options
author | Bryn M. Reeves <bmr@redhat.com> | 2015-01-19 18:33:31 +0000 |
---|---|---|
committer | Bryn M. Reeves <bmr@redhat.com> | 2015-01-19 18:33:31 +0000 |
commit | c9f1588bb69dff6cc322b05436793ed9cc39568c (patch) | |
tree | 90369dbe55f1cc523a6b264654198a6877f33e39 | |
parent | d0408ac43e1ec3b114e69b2950202f87f2fcd250 (diff) | |
download | sos-c9f1588bb69dff6cc322b05436793ed9cc39568c.tar.gz |
[squid] don't use add_copy_spec_limt() for conf files
Signed-off-by: Bryn M. Reeves <bmr@redhat.com>
-rw-r--r-- | sos/plugins/squid.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sos/plugins/squid.py b/sos/plugins/squid.py index f1aea736..a995158b 100644 --- a/sos/plugins/squid.py +++ b/sos/plugins/squid.py @@ -31,7 +31,7 @@ class RedHatSquid(Squid, RedHatPlugin): def setup(self): log_size = self.get_option('log_size') log_path = "/var/log/squid/" - self.add_copy_spec_limit("/etc/squid/squid.conf", sizelimit=log_size) + self.add_copy_spec("/etc/squid/squid.conf") self.add_copy_spec_limit(log_path + "access.log", sizelimit=log_size) self.add_copy_spec_limit(log_path + "cache.log", sizelimit=log_size) self.add_copy_spec_limit(log_path + "squid.out", sizelimit=log_size) |