X-Git-Url: https://git.openstreetmap.org/chef.git/blobdiff_plain/4787523adf3d90b98c0d23d405f7609fb07829fc..92ef4551d12f9f7b01ec07d0612f203b0c965e8a:/cookbooks/munin/resources/plugin_conf.rb diff --git a/cookbooks/munin/resources/plugin_conf.rb b/cookbooks/munin/resources/plugin_conf.rb index 88b453d9a..ce4c80739 100644 --- a/cookbooks/munin/resources/plugin_conf.rb +++ b/cookbooks/munin/resources/plugin_conf.rb @@ -21,6 +21,11 @@ actions :create, :delete default_action :create attribute :name, :kind_of => String, :name_attribute => true -attribute :cookbook, :kind_of => String +attribute :cookbook, :kind_of => [String, nil] attribute :template, :kind_of => String, :required => true attribute :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 +end