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
mode 0755
end
-[ "streaming-replicator", "streaming-server" ].each do |name|
+["streaming-replicator", "streaming-server"].each do |name|
template "/etc/init.d/#{name}" do
source "streaming.init.erb"
owner "root"
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