X-Git-Url: https://git.openstreetmap.org/chef.git/blobdiff_plain/246dbd618c071f1bbb33c506e7c4a797fb9d20a8..fa63c845987967418edaff22b75958916b19f19a:/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 deleted file mode 100644 index 40a2240b4..000000000 --- a/cookbooks/tilecache/templates/default/logrotate.squid.erb +++ /dev/null @@ -1,24 +0,0 @@ -# DO NOT EDIT - This file is being maintained by Chef - -/var/log/squid/*.log { - daily - compress - compresscmd /usr/bin/xz - compressoptions --threads=<%= [ node[:cpu][:total] / 2, 1 ].max.ceil %> - uncompresscmd /usr/bin/unxz - compressext .xz - rotate 2 - missingok - 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 --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 -}