]> git.openstreetmap.org Git - chef.git/blobdiff - cookbooks/planet/recipes/replication.rb
Disable streaming replication
[chef.git] / cookbooks / planet / recipes / replication.rb
index b20cf7c656729265d7c473a69b89d69b66b04b60..d9ff9b67c04cfae7bb0dba9d47482b16f71cef22 100644 (file)
@@ -166,37 +166,37 @@ else
   end
 end
 
-directory "/var/lib/replication/streaming" do
-  owner "planet"
-  group "planet"
-  mode 0o755
-end
-
-directory "/var/log/replication" do
-  owner "planet"
-  group "planet"
-  mode 0o755
-end
-
-["streaming-replicator", "streaming-server"].each do |name|
-  template "/etc/init.d/#{name}" do
-    source "streaming.init.erb"
-    owner "root"
-    group "root"
-    mode 0o755
-    variables :service => name
-  end
-
-  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
+directory "/var/lib/replication/streaming" do
+  owner "planet"
+  group "planet"
+  mode 0o755
+end
+#
+directory "/var/log/replication" do
+  owner "planet"
+  group "planet"
+  mode 0o755
+end
+#
+["streaming-replicator", "streaming-server"].each do |name|
+  template "/etc/init.d/#{name}" do
+    source "streaming.init.erb"
+    owner "root"
+    group "root"
+    mode 0o755
+    variables :service => name
+  end
+#
+  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