X-Git-Url: https://git.openstreetmap.org./chef.git/blobdiff_plain/74b73fca651c497fc361b37ebd70bcf785a83d85..7f5c025954a0868b7ac2aea8722089e75c39668e:/cookbooks/tilecache/templates/default/logrotate.squid.erb?ds=sidebyside diff --git a/cookbooks/tilecache/templates/default/logrotate.squid.erb b/cookbooks/tilecache/templates/default/logrotate.squid.erb index fdc426cfe..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,9 +12,13 @@ nocreate sharedscripts postrotate +<% if node[:lsb][:release].to_f < 20.04 -%> test ! -e /var/run/squid.pid || /usr/sbin/squid -k rotate +<% else -%> + test ! -e /run/squid/squid.pid || /usr/sbin/squid -k rotate +<% end -%> endscript lastaction - /usr/bin/rsync /var/log/squid/zere.log.1.xz ironbelly::logs/tile.openstreetmap.org/<%= node[:hostname] %>-`date -d "-1 days" +%Y-%m-%d`.xz || true + /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 }