X-Git-Url: https://git.openstreetmap.org./chef.git/blobdiff_plain/9d27360314f8e4e9844cde4059f98fac52250d36..c1f1e240baece8f3a3ee1d7139736e4a6a0f027e:/cookbooks/munin/resources/plugin_conf.rb diff --git a/cookbooks/munin/resources/plugin_conf.rb b/cookbooks/munin/resources/plugin_conf.rb index e4b99965d..e47b1336b 100644 --- a/cookbooks/munin/resources/plugin_conf.rb +++ b/cookbooks/munin/resources/plugin_conf.rb @@ -24,12 +24,8 @@ attribute :name, :kind_of => String, :name_attribute => true attribute :cookbook, :kind_of => String attribute :template, :kind_of => String, :required => true attribute :variables, :kind_of => Hash, :default => {} +attribute :restart_munin, :kind_of => [TrueClass, FalseClass], :default => true -def initialize(*args) - super - begin - resources(:service => "munin-node").subscrbes(:restart, self) - rescue Chef::Exceptions::ResourceNotFound - # Ignore - end +def after_created + notifies :restart, "service[munin-node]" if restart_munin end