X-Git-Url: https://git.openstreetmap.org/chef.git/blobdiff_plain/d1e8786ca687c318e785f30970dae5564cdd2317..d058d9fb0695302bf5f79630bdf1f465f8ed1da0:/cookbooks/web/resources/rails_port.rb diff --git a/cookbooks/web/resources/rails_port.rb b/cookbooks/web/resources/rails_port.rb index 6395fb1d5..ba3f06aaa 100644 --- a/cookbooks/web/resources/rails_port.rb +++ b/cookbooks/web/resources/rails_port.rb @@ -73,6 +73,7 @@ property :diary_feed_delay, Integer property :storage_configuration, Hash, :default => {} property :storage_service, String, :default => "local" property :storage_url, String +property :tile_cdn_url, String action :create do package %W[ @@ -80,12 +81,12 @@ action :create do ruby#{new_resource.ruby}-dev imagemagick nodejs - geoip-database tzdata ] package %w[ g++ + make pkg-config libpq-dev libsasl2-dev @@ -181,7 +182,6 @@ action :create do line.gsub!(/^( *)#geonames_username:.*$/, "\\1geonames_username: \"openstreetmap\"") - line.gsub!(/^( *)#geoip_database:.*$/, "\\1geoip_database: \"/usr/share/GeoIP/GeoIPv6.dat\"") line.gsub!(/^( *)#maxmind_database:.*$/, "\\1maxmind_database: \"/usr/share/GeoIP/GeoLite2-Country.mmdb\"") if new_resource.gpx_dir @@ -320,14 +320,14 @@ action :create do "trace_use_job_queue", "diary_feed_delay", "storage_service", - "storage_url" + "storage_url", + "tile_cdn_url" ).reject { |_k, v| v.nil? }.merge( "server_protocol" => "https", "server_url" => new_resource.site, "support_email" => "support@openstreetmap.org", "email_return_path" => "bounces@openstreetmap.org", "geonames_username" => "openstreetmap", - "geoip_database" => "/usr/share/GeoIP/GeoIPv6.dat", "maxmind_database" => "/usr/share/GeoIP/GeoLite2-Country.mmdb" )