]> git.openstreetmap.org Git - chef.git/blobdiff - cookbooks/db/recipes/base.rb
imagery: Add OS OpenMap Local 2024-10. Move /sv url to openmap
[chef.git] / cookbooks / db / recipes / base.rb
index 6efbde32891ea66498777fa445606768d1fc85e8..b25fbdbb2f22f539fae8e8952f809f27f3b4e3e5 100644 (file)
@@ -23,43 +23,21 @@ include_recipe "postgresql"
 include_recipe "python"
 include_recipe "ruby"
 
-passwords = data_bag_item("db", "passwords")
 wal_secrets = data_bag_item("db", "wal-secrets")
 
-postgresql_munin "openstreetmap" do
-  cluster node[:db][:cluster]
-  database "openstreetmap"
-end
-
-directory "/srv/www.openstreetmap.org" do
-  group "rails"
-  mode "2775"
-end
-
-rails_port "www.openstreetmap.org" do
-  directory "/srv/www.openstreetmap.org/rails"
-  user "rails"
-  group "rails"
-  repository "https://git.openstreetmap.org/public/rails.git"
-  revision "live"
-  build_assets false
-  database_host "localhost"
-  database_name "openstreetmap"
-  database_username "openstreetmap"
-  database_password passwords["openstreetmap"]
-end
-
 package %w[
   cmake
-  libosmium2-dev
-  libprotozero-dev
+  g++
   libboost-filesystem-dev
   libboost-program-options-dev
   libbz2-dev
-  zlib1g-dev
   libexpat1-dev
-  libyaml-cpp-dev
+  libosmium2-dev
   libpqxx-dev
+  libprotozero-dev
+  libyaml-cpp-dev
+  make
+  zlib1g-dev
 ]
 
 git "/opt/osmdbt" do