X-Git-Url: https://git.openstreetmap.org/chef.git/blobdiff_plain/4787523adf3d90b98c0d23d405f7609fb07829fc..4b72a671e89f505b417a9ef47368187a17f4d252:/cookbooks/munin/resources/plugin.rb diff --git a/cookbooks/munin/resources/plugin.rb b/cookbooks/munin/resources/plugin.rb index 758d9b413..5b93b8dea 100644 --- a/cookbooks/munin/resources/plugin.rb +++ b/cookbooks/munin/resources/plugin.rb @@ -25,3 +25,8 @@ attribute :target, :kind_of => String attribute :conf, :kind_of => String attribute :conf_cookbook, :kind_of => String 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 && node[:recipes].include?("munin") +end