X-Git-Url: https://git.openstreetmap.org/chef.git/blobdiff_plain/7b4e373a485d44870c2118a7e473f76641a26159..d9ce053b71c151916fa8764b44a6058f827d3146:/cookbooks/planet/recipes/replication.rb diff --git a/cookbooks/planet/recipes/replication.rb b/cookbooks/planet/recipes/replication.rb index d9ff9b67c..b23c00f36 100644 --- a/cookbooks/planet/recipes/replication.rb +++ b/cookbooks/planet/recipes/replication.rb @@ -1,14 +1,14 @@ # -# Cookbook Name:: planet +# Cookbook:: planet # Recipe:: dump # -# Copyright 2013, OpenStreetMap Foundation +# Copyright:: 2013, OpenStreetMap Foundation # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# https://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, @@ -17,6 +17,7 @@ # limitations under the License. # +include_recipe "accounts" include_recipe "osmosis" db_passwords = data_bag_item("db", "passwords") @@ -27,9 +28,31 @@ package "ruby" package "ruby-dev" package "ruby-libxml" +package "make" +package "gcc" package "libpq-dev" + gem_package "pg" +remote_directory "/opt/flush" do + source "flush" + owner "root" + group "root" + mode 0o755 + files_owner "root" + files_group "root" + files_mode 0o755 +end + +execute "/opt/flush/Makefile" do + action :nothing + command "make" + cwd "/opt/flush" + user "root" + group "root" + subscribes :run, "remote_directory[/opt/flush]" +end + remote_directory "/usr/local/bin" do source "replication-bin" owner "root" @@ -47,6 +70,23 @@ template "/usr/local/bin/users-agreed" do mode 0o755 end +template "/usr/local/bin/users-deleted" do + source "users-deleted.erb" + owner "root" + group "root" + mode 0o755 +end + +remote_directory "/store/planet/users_deleted" do + source "users_deleted" + owner "planet" + group "planet" + mode 0o755 + files_owner "root" + files_group "root" + files_mode 0o644 +end + remote_directory "/store/planet/replication" do source "replication-cgi" owner "root"