]> git.openstreetmap.org Git - chef.git/blobdiff - cookbooks/munin/recipes/server.rb
Use rrdcached with munin
[chef.git] / cookbooks / munin / recipes / server.rb
index ed7aeac44bf5bc326cbc2e1db4698ec8bdf03a87..983f92231adbb52672068dbd60b7374ba9b31664 100644 (file)
 include_recipe "apache"
 
 package "munin"
+package "rrdcached"
+
+template "/etc/default/rrdcached" do
+  source "rrdcached.erb"
+  owner "root"
+  group "root"
+  mode 0644
+end
+
+directory "/var/lib/munin/rrdcached" do
+  owner "munin"
+  group "munin"
+  mode 0755
+end
+
+service "rrdcached" do
+  action [ :enable, :start ]
+  subscribes :restart, "template[/etc/default/rrdcached]"
+end
 
 expiry_time = 14 * 86400