]> git.openstreetmap.org Git - chef.git/blobdiff - cookbooks/munin/recipes/server.rb
Yet more rubucop cleanups
[chef.git] / cookbooks / munin / recipes / server.rb
index ed7aeac44bf5bc326cbc2e1db4698ec8bdf03a87..3e72ea160194a10cacbf5dea978fa837dd3aa502 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
+
+munin_plugin "rrdcached"
 
 expiry_time = 14 * 86400