X-Git-Url: https://git.openstreetmap.org/chef.git/blobdiff_plain/d1aa1b279a4737ecb852f36412a9017253e0e874..2f0b6f10a1269e4a0a3ae8897d6fda10dd14fb4d:/cookbooks/tilecache/templates/default/logrotate.squid.erb diff --git a/cookbooks/tilecache/templates/default/logrotate.squid.erb b/cookbooks/tilecache/templates/default/logrotate.squid.erb index 6ce392c1d..40a2240b4 100644 --- a/cookbooks/tilecache/templates/default/logrotate.squid.erb +++ b/cookbooks/tilecache/templates/default/logrotate.squid.erb @@ -4,6 +4,7 @@ daily compress compresscmd /usr/bin/xz + compressoptions --threads=<%= [ node[:cpu][:total] / 2, 1 ].max.ceil %> uncompresscmd /usr/bin/unxz compressext .xz rotate 2 @@ -11,7 +12,13 @@ nocreate sharedscripts postrotate +<% if node[:lsb][:release].to_f < 20.04 -%> test ! -e /var/run/squid.pid || /usr/sbin/squid -k rotate - /usr/bin/rsync /var/log/squid/zere.log.2.xz ironbelly::logs/tile.openstreetmap.org/<%= node[:hostname] %>-`date -d "-2 days" +%Y-%m-%d`.xz || true +<% else -%> + test ! -e /run/squid/squid.pid || /usr/sbin/squid -k rotate +<% end -%> + endscript + lastaction + /usr/bin/rsync --preallocate /var/log/squid/access.log.1.xz ironbelly::logs/tile.openstreetmap.org/<%= node[:hostname] %>-`date -d "-1 days" +%Y-%m-%d`.xz || true endscript }