X-Git-Url: https://git.openstreetmap.org./chef.git/blobdiff_plain/60b1f7f088490d6904ce549956d33e2992963e79..361fe7b2d59cd38452162f1c66f961f9f71ec377:/cookbooks/munin/recipes/server.rb?ds=sidebyside diff --git a/cookbooks/munin/recipes/server.rb b/cookbooks/munin/recipes/server.rb index 983f92231..4729f4321 100644 --- a/cookbooks/munin/recipes/server.rb +++ b/cookbooks/munin/recipes/server.rb @@ -21,6 +21,7 @@ include_recipe "apache" package "munin" package "rrdcached" +package "libcgi-fast-perl" template "/etc/default/rrdcached" do source "rrdcached.erb" @@ -36,10 +37,12 @@ directory "/var/lib/munin/rrdcached" do end service "rrdcached" do - action [ :enable, :start ] + action [:enable, :start] subscribes :restart, "template[/etc/default/rrdcached]" end +munin_plugin "rrdcached" + expiry_time = 14 * 86400 clients = search(:node, "recipes:munin").select { |n| n[:munin] }.sort_by { |n| n[:hostname] } @@ -60,9 +63,24 @@ template "/etc/munin/munin.conf" do variables :expiry_time => expiry_time, :clients => clients, :frontends => frontends, :backends => backends, :tilecaches => tilecaches, :renderers => renderers end +apache_module "fcgid" +apache_module "rewrite" + +remote_directory "/srv/munin.openstreetmap.org" do + source "www" + owner "root" + group "root" + mode 0755 + files_owner "root" + files_group "root" + files_mode 0755 + purge true +end + apache_site "munin.openstreetmap.org" do template "apache.erb" end munin_plugin "munin_stats" munin_plugin "munin_update" +munin_plugin "munin_rrdcached"