5 # Copyright:: 2011, OpenStreetMap Foundation
7 # Licensed under the Apache License, Version 2.0 (the "License");
8 # you may not use this file except in compliance with the License.
9 # You may obtain a copy of the License at
11 # https://www.apache.org/licenses/LICENSE-2.0
13 # Unless required by applicable law or agreed to in writing, software
14 # distributed under the License is distributed on an "AS IS" BASIS,
15 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16 # See the License for the specific language governing permissions and
17 # limitations under the License.
20 include_recipe "accounts"
22 include_recipe "postgresql"
23 include_recipe "python"
25 passwords = data_bag_item("db", "passwords")
26 wal_secrets = data_bag_item("db", "wal-secrets")
28 ruby_version = node[:passenger][:ruby_version]
29 db_version = node[:db][:cluster].split("/").first
30 pg_config = "/usr/lib/postgresql/#{db_version}/bin/pg_config"
31 function_directory = "/srv/www.openstreetmap.org/rails/db/functions/#{db_version}"
33 postgresql_munin "openstreetmap" do
34 cluster node[:db][:cluster]
35 database "openstreetmap"
38 directory "/srv/www.openstreetmap.org" do
43 rails_port "www.openstreetmap.org" do
45 directory "/srv/www.openstreetmap.org/rails"
48 repository "https://git.openstreetmap.org/public/rails.git"
51 database_host "localhost"
52 database_name "openstreetmap"
53 database_username "openstreetmap"
54 database_password passwords["openstreetmap"]
55 gpx_dir "/store/rails/gpx"
58 directory function_directory do
64 execute function_directory do
66 command "make BUNDLE=bundle#{ruby_version} PG_CONFIG=#{pg_config} DESTDIR=#{function_directory}"
67 cwd "/srv/www.openstreetmap.org/rails/db/functions"
70 subscribes :run, "directory[#{function_directory}]"
71 subscribes :run, "git[/srv/www.openstreetmap.org/rails]"
74 link "/usr/lib/postgresql/#{db_version}/lib/libpgosm.so" do
75 to "#{function_directory}/libpgosm.so"
84 libboost-filesystem-dev
85 libboost-program-options-dev
95 repository "https://github.com/openstreetmap/osmdbt.git"
102 directory "/opt/osmdbt/build-#{db_version}" do
108 execute "/opt/osmdbt/CMakeLists.txt" do
110 command "cmake -DPG_CONFIG=/usr/lib/postgresql/#{db_version}/bin/pg_config .."
111 cwd "/opt/osmdbt/build-#{db_version}"
114 subscribes :run, "git[/opt/osmdbt]"
117 execute "/opt/osmdbt/build-#{db_version}/postgresql-plugin/Makefile" do
120 cwd "/opt/osmdbt/build-#{db_version}/postgresql-plugin"
123 subscribes :run, "execute[/opt/osmdbt/CMakeLists.txt]"
126 link "/usr/lib/postgresql/#{db_version}/lib/osm-logical.so" do
127 to "/opt/osmdbt/build-#{db_version}/postgresql-plugin/osm-logical.so"
134 python_package "wal-e" do
138 python_package "boto" do
142 template "/usr/local/bin/openstreetmap-wal-e" do
147 variables :s3_key => wal_secrets["s3_key"]