]> git.openstreetmap.org Git - chef.git/blobdiff - cookbooks/planet/recipes/replication.rb
Disable replication on grisu
[chef.git] / cookbooks / planet / recipes / replication.rb
index 1ae670bbb1d01a812a17961bf97fa46a9377a75a..fef4e017ed51235b09ff1228b2e9a12a578649db 100644 (file)
@@ -146,11 +146,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 +180,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