]> git.openstreetmap.org Git - chef.git/blobdiff - cookbooks/tile/templates/default/expire-tiles.xenial.erb
Remove support for Ubuntu 16.04 render servers
[chef.git] / cookbooks / tile / templates / default / expire-tiles.xenial.erb
diff --git a/cookbooks/tile/templates/default/expire-tiles.xenial.erb b/cookbooks/tile/templates/default/expire-tiles.xenial.erb
deleted file mode 100644 (file)
index 1a8a01a..0000000
+++ /dev/null
@@ -1,18 +0,0 @@
-#!/usr/bin/ruby
-
-# DO NOT EDIT - This file is being maintained by Chef
-
-require 'expire'
-
-tile_dirs = [
-<% node[:tile][:styles].each do |name,details| -%>
-  "/srv/tile.openstreetmap.org/tiles/<%= name %>",
-<% end -%>
-]
-
-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)
-end