X-Git-Url: https://git.openstreetmap.org./chef.git/blobdiff_plain/9802985c84fa828a7a94ac5a7aafbd5b0f6e5a2c..bc4644e25d7ed612e18f68bc712e8f52fc51a782:/cookbooks/web/recipes/cgimap.rb diff --git a/cookbooks/web/recipes/cgimap.rb b/cookbooks/web/recipes/cgimap.rb index ba9799c4c..009b0a6d7 100644 --- a/cookbooks/web/recipes/cgimap.rb +++ b/cookbooks/web/recipes/cgimap.rb @@ -27,18 +27,10 @@ package "openstreetmap-cgimap-bin" do action :upgrade end -if node[:web][:readonly_database_host] - database_host = node[:web][:readonly_database_host] - database_readonly = true -else - database_host = node[:web][:database_host] - database_readonly = node[:web][:status] == "database_readonly" -end +database_host = node[:web][:readonly_database_host] || node[:web][:database_host] memcached_servers = node[:web][:memcached_servers] || [] -switches = database_readonly ? " --readonly" : "" - systemd_service "cgimap" do description "OpenStreetMap API Server" type "forking" @@ -54,7 +46,7 @@ systemd_service "cgimap" do "CGIMAP_RATELIMIT" => "204800", "CGIMAP_MAXDEBT" => "250" user "rails" - exec_start "/usr/bin/openstreetmap-cgimap --daemon --port 8000 --instances 30#{switches}" + exec_start "/usr/bin/openstreetmap-cgimap --daemon --port 8000 --instances 30" exec_reload "/bin/kill -HUP $MAINPID" private_tmp true private_devices true