X-Git-Url: https://git.openstreetmap.org/chef.git/blobdiff_plain/016c7dfacda321c44808f179a0ec4e66954336cc..4540ea2e1dd03ebb2487bacfa9888d0e1ccb9c23:/cookbooks/tile/templates/default/expire-tiles.erb diff --git a/cookbooks/tile/templates/default/expire-tiles.erb b/cookbooks/tile/templates/default/expire-tiles.erb index 1a8a01a26..3a023d6b2 100644 --- a/cookbooks/tile/templates/default/expire-tiles.erb +++ b/cookbooks/tile/templates/default/expire-tiles.erb @@ -2,17 +2,14 @@ # DO NOT EDIT - This file is being maintained by Chef -require 'expire' - -tile_dirs = [ +args = [ <% node[:tile][:styles].each do |name,details| -%> - "/srv/tile.openstreetmap.org/tiles/<%= name %>", + "-t", "/srv/tile.openstreetmap.org/tiles/<%= name %>", <% end -%> + "--min", "13", + "--max", "<%= node[:tile][:styles].collect { |n,d| d[:max_zoom] }.max %>" ] -max_zoom = <%= node[:tile][:styles].collect { |n,d| d[:max_zoom] }.max %> - -Dir.glob("/var/lib/replicate/expire-queue/changes-*.gz").each do |f| - Expire::expire(f, 13, max_zoom, tile_dirs) - File::unlink(f) +Dir.glob("/var/lib/replicate/expire-queue/changes-*.gz").sort.each do |f| + system("/usr/local/bin/expire-tiles-single", *args, f) && File::unlink(f) end