From: Tom Hughes Date: Wed, 26 Oct 2016 22:10:05 +0000 (+0100) Subject: Only try and restart munin-node if the munin recipe is applied X-Git-Url: https://git.openstreetmap.org/chef.git/commitdiff_plain/4b72a671e89f505b417a9ef47368187a17f4d252?hp=8955dab9362ef74768872c57ec936b27d7a0704e Only try and restart munin-node if the munin recipe is applied Fixes #80 --- diff --git a/cookbooks/munin/resources/plugin.rb b/cookbooks/munin/resources/plugin.rb index d8861fafe..5b93b8dea 100644 --- a/cookbooks/munin/resources/plugin.rb +++ b/cookbooks/munin/resources/plugin.rb @@ -28,5 +28,5 @@ attribute :conf_variables, :kind_of => Hash, :default => {} attribute :restart_munin, :kind_of => [TrueClass, FalseClass], :default => true def after_created - notifies :restart, "service[munin-node]" if restart_munin + notifies :restart, "service[munin-node]" if restart_munin && node[:recipes].include?("munin") end