]> git.openstreetmap.org Git - chef.git/commitdiff
Render right down to z12 before marking style as updated
authorTom Hughes <tom@compton.nu>
Fri, 21 Mar 2014 15:05:26 +0000 (15:05 +0000)
committerTom Hughes <tom@compton.nu>
Fri, 21 Mar 2014 15:08:47 +0000 (15:08 +0000)
cookbooks/tile/templates/default/update-lowzoom.erb

index 291e9a8d50804e63c7c051b4c6eaa3f3b4b699b6..17229e94fd03f99f2be7ad82bd7f406a99d0d407 100644 (file)
@@ -5,7 +5,7 @@
 # Send output to the log
 exec > /var/log/tile/update-lowzoom-<%= @style %>.log 2>&1
 
-# Update tiles from z0 to z10 for style "<%= @style %>"
+# Update tiles from z0 to z12 for style "<%= @style %>"
 render_list \
   --all --force \
   --tile-dir=/srv/tile.openstreetmap.org/tiles \
@@ -13,20 +13,11 @@ render_list \
   --num-threads=<%= ( node[:cpu][:total] - 2 ) / 4 %> \
   --map="<%= @style %>" \
   --max-load=70 \
-  --min-zoom=0 --max-zoom=10
+  --min-zoom=0 --max-zoom=12
 
 # Update timestamp for style "<%= @style %>"
 touch \
   --reference="/srv/tile.openstreetmap.org/styles/<%= @style %>/project.xml" \
   "/srv/tile.openstreetmap.org/tiles/<%= @style %>/planet-import-complete"
 
-# Update tiles from z11 to z12 for style "<%= @style %>"
-render_old \
-  --tile-dir=/srv/tile.openstreetmap.org/tiles \
-  --socket=/var/run/renderd/renderd.sock \
-  --num-threads=<%= ( node[:cpu][:total] - 2 ) / 4 %> \
-  --map="<%= @style %>" \
-  --max-load=70 \
-  --min-zoom=11 --max-zoom=12
-
 exit 0