X-Git-Url: https://git.openstreetmap.org./chef.git/blobdiff_plain/b8cf59b1443e4efad7b9b75cee089394f03eaa33..11fdeeaa56975b200a46cc3ee7124e529621fba9:/cookbooks/web/templates/default/statistics.erb?ds=sidebyside diff --git a/cookbooks/web/templates/default/statistics.erb b/cookbooks/web/templates/default/statistics.erb index 87386a23d..30a23a7ac 100644 --- a/cookbooks/web/templates/default/statistics.erb +++ b/cookbooks/web/templates/default/statistics.erb @@ -1,13 +1,16 @@ #!/bin/sh +# Abort on error +set -e + # Make sure /usr/local/bin is on the path export PATH=$PATH:/usr/local/bin # Generate new statistics -<%= @directory %>/script/statistics > <%= @directory %>/tmp/data_stats.html +<%= @ruby %> -W0 <%= @directory %>/script/statistics > <%= @directory %>/tmp/data_stats.html # Move new statistics into place -mv -f <%= @directory %>/tmp/data_stats.html /store/rails/stats +rsync --quiet <%= @directory %>/tmp/data_stats.html planet.openstreetmap.org::statistics # Mail statistics to Blackadder -mail -s "OpenStreetMap Statistics" blackadderajr@gmail.com < /store/rails/stats/data_stats.html +mail -s "OpenStreetMap Statistics" blackadderajr@gmail.com < <%= @directory %>/tmp/data_stats.html