]> git.openstreetmap.org Git - chef.git/blobdiff - cookbooks/tilecache/templates/default/logrotate.squid.erb
tilecache: switch port 80 traffic to nginx
[chef.git] / cookbooks / tilecache / templates / default / logrotate.squid.erb
index 80953e840c409ccf8ab723e05e8d59602b62af39..697f0c5c6057a3040a62fda7dce23fff24e24926 100644 (file)
@@ -3,13 +3,18 @@
 /var/log/squid/*.log {
   daily
   compress
-  delaycompress
+  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
     test ! -e /var/run/squid.pid || /usr/sbin/squid -k rotate
-    /usr/bin/rsync /var/log/squid/zere.log.2.gz ironbelly::logs/tile.openstreetmap.org/<%= node[:hostname] %>-`date -d "-2 days" +%Y-%m-%d`.gz
+  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
 }