X-Git-Url: https://git.openstreetmap.org/chef.git/blobdiff_plain/18e12b0e123fc3e5f344682f884feabc12da0f5a..f17cb847eed25ce09a134f4047365fdce1512f26:/cookbooks/db/recipes/base.rb diff --git a/cookbooks/db/recipes/base.rb b/cookbooks/db/recipes/base.rb index e91875819..6d6bc8ddc 100644 --- a/cookbooks/db/recipes/base.rb +++ b/cookbooks/db/recipes/base.rb @@ -34,12 +34,18 @@ directory "/srv/www.openstreetmap.org" do mode 0o2775 end +ruby_version = if node[:lsb][:release].to_f >= 18.04 + "2.5" + else + "2.3" + end + rails_port "www.openstreetmap.org" do - ruby "2.3" + ruby ruby_version directory "/srv/www.openstreetmap.org/rails" user "rails" group "rails" - repository "git://git.openstreetmap.org/rails.git" + repository "https://git.openstreetmap.org/public/rails.git" revision "live" database_host "localhost" database_name "openstreetmap"