X-Git-Url: https://git.openstreetmap.org./chef.git/blobdiff_plain/2957f708c2abc2f7eee7eef7a524a2ece562950a..5fb76dc7c3c0de9177b690895aed29d479aa144a:/cookbooks/db/recipes/base.rb?ds=sidebyside diff --git a/cookbooks/db/recipes/base.rb b/cookbooks/db/recipes/base.rb index a3fb222a2..bf414737c 100644 --- a/cookbooks/db/recipes/base.rb +++ b/cookbooks/db/recipes/base.rb @@ -21,12 +21,11 @@ include_recipe "accounts" include_recipe "git" include_recipe "postgresql" include_recipe "python" +include_recipe "ruby" passwords = data_bag_item("db", "passwords") wal_secrets = data_bag_item("db", "wal-secrets") -ruby_version = node[:passenger][:ruby_version] - postgresql_munin "openstreetmap" do cluster node[:db][:cluster] database "openstreetmap" @@ -38,7 +37,6 @@ directory "/srv/www.openstreetmap.org" do end rails_port "www.openstreetmap.org" do - ruby ruby_version directory "/srv/www.openstreetmap.org/rails" user "rails" group "rails" @@ -49,7 +47,6 @@ rails_port "www.openstreetmap.org" do database_name "openstreetmap" database_username "openstreetmap" database_password passwords["openstreetmap"] - gpx_dir "/store/rails/gpx" end package %w[ @@ -68,38 +65,13 @@ package %w[ git "/opt/osmdbt" do action :sync repository "https://github.com/openstreetmap/osmdbt.git" - revision "v0.2" + revision "v0.5" depth 1 user "root" group "root" end node[:postgresql][:versions].each do |db_version| - pg_config = "/usr/lib/postgresql/#{db_version}/bin/pg_config" - function_directory = "/srv/www.openstreetmap.org/rails/db/functions/#{db_version}" - - directory function_directory do - owner "rails" - group "rails" - mode "755" - end - - execute function_directory do - action :nothing - command "make BUNDLE=bundle#{ruby_version} PG_CONFIG=#{pg_config} DESTDIR=#{function_directory}" - cwd "/srv/www.openstreetmap.org/rails/db/functions" - user "rails" - group "rails" - subscribes :run, "directory[#{function_directory}]" - subscribes :run, "git[/srv/www.openstreetmap.org/rails]" - end - - link "/usr/lib/postgresql/#{db_version}/lib/libpgosm.so" do - to "#{function_directory}/libpgosm.so" - owner "root" - group "root" - end - directory "/opt/osmdbt/build-#{db_version}" do owner "root" group "root"