X-Git-Url: https://git.openstreetmap.org/chef.git/blobdiff_plain/9d27360314f8e4e9844cde4059f98fac52250d36..e54da9eaec238be8640da3ebc26677969a316db1:/cookbooks/munin/resources/plugin.rb diff --git a/cookbooks/munin/resources/plugin.rb b/cookbooks/munin/resources/plugin.rb index 5d36e13a5..d8861fafe 100644 --- a/cookbooks/munin/resources/plugin.rb +++ b/cookbooks/munin/resources/plugin.rb @@ -25,8 +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 initialize(*args) - super - notifies :restart, "service[munin-node]" +def after_created + notifies :restart, "service[munin-node]" if restart_munin end