From: Tom Hughes Date: Thu, 2 Apr 2015 14:54:36 +0000 (+0100) Subject: Disable alerts from the munin_update plugin X-Git-Url: https://git.openstreetmap.org/chef.git/commitdiff_plain/6b5908f5a53799fb55becad254408c1d273f2047?hp=0b1d3c0a4d78158641b9a15b0d93f3cf710f753c;ds=sidebyside Disable alerts from the munin_update plugin It's very noisy if a machine intermittently fails to respond, and generates useless alert messages... --- diff --git a/roles/munin.rb b/roles/munin.rb index 046360b0a..1522c96e1 100644 --- a/roles/munin.rb +++ b/roles/munin.rb @@ -1,6 +1,16 @@ name "munin" description "Role applied to all munin servers" +default_attributes( + :munin => { + :plugins => { + :munin_update => { + :contacts => "null" + } + } + } +) + run_list( "recipe[munin::server]" )