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"
 
  26 wal_secrets = data_bag_item("db", "wal-secrets")
 
  31   libboost-filesystem-dev
 
  32   libboost-program-options-dev
 
  45   repository "https://github.com/openstreetmap/osmdbt.git"
 
  52 node[:postgresql][:versions].each do |db_version|
 
  53   directory "/opt/osmdbt/build-#{db_version}" do
 
  59   execute "/opt/osmdbt/build-#{db_version}" do
 
  61     command "cmake -DPG_CONFIG=/usr/lib/postgresql/#{db_version}/bin/pg_config .."
 
  62     cwd "/opt/osmdbt/build-#{db_version}"
 
  65     subscribes :run, "directory[/opt/osmdbt/build-#{db_version}]"
 
  66     subscribes :run, "git[/opt/osmdbt]"
 
  69   execute "/opt/osmdbt/build-#{db_version}/postgresql-plugin/Makefile" do
 
  72     cwd "/opt/osmdbt/build-#{db_version}/postgresql-plugin"
 
  75     subscribes :run, "execute[/opt/osmdbt/build-#{db_version}]"
 
  78   link "/usr/lib/postgresql/#{db_version}/lib/osm-logical.so" do
 
  79     to "/opt/osmdbt/build-#{db_version}/postgresql-plugin/osm-logical.so"
 
  87 remote_file "/usr/local/bin/wal-g" do
 
  89   source "https://github.com/wal-g/wal-g/releases/download/v2.0.1/wal-g-pg-ubuntu-20.04-amd64"
 
  95 template "/usr/local/bin/openstreetmap-wal-g" do
 
 100   variables :s3_key => wal_secrets["s3_key"]