X-Git-Url: https://git.openstreetmap.org/chef.git/blobdiff_plain/21958591555b0b80370e944e3128ac5d533c281d..427fc63d523743677b1cc842bd871c88346d875c:/cookbooks/planet/recipes/replication.rb diff --git a/cookbooks/planet/recipes/replication.rb b/cookbooks/planet/recipes/replication.rb index 1ae670bbb..adb9bb7e1 100644 --- a/cookbooks/planet/recipes/replication.rb +++ b/cookbooks/planet/recipes/replication.rb @@ -40,6 +40,13 @@ remote_directory "/usr/local/bin" do files_mode 0755 end +template "/usr/local/bin/users-agreed" do + source "users-agreed.erb" + owner "root" + group "root" + mode 0755 +end + remote_directory "/store/planet/replication" do source "replication-cgi" owner "root" @@ -146,11 +153,17 @@ link "/var/lib/replication/day/data" do to "/store/planet/replication/day" end -template "/etc/cron.d/replication" do - source "replication.cron.erb" - owner "root" - group "root" - mode 0644 +if node[:planet][:replication] == "enabled" + template "/etc/cron.d/replication" do + source "replication.cron.erb" + owner "root" + group "root" + mode 0644 + end +else + file "/etc/cron.d/replication" do + action :delete + end end directory "/var/lib/replication/streaming" do @@ -174,9 +187,16 @@ end variables :service => name end - service name do - action [:enable, :start] - supports :restart => true, :status => true - subscribes :restart, "template[/etc/init.d/#{name}]" + if node[:planet][:replication] == "enabled" + service name do + action [:enable, :start] + supports :restart => true, :status => true + subscribes :restart, "template[/etc/init.d/#{name}]" + end + else + service name do + action [:disable, :stop] + supports :restart => true, :status => true + end end end