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"
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
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