+action :create do
+ link_action = case target_path
+ when nil then :delete
+ else :create
+ end
+
+ link plugin_path do
+ action link_action
+ to target_path
+ end
+
+ if new_resource.conf
+ munin_plugin_conf new_resource.plugin do
+ cookbook new_resource.conf_cookbook
+ template new_resource.conf
+ variables new_resource.conf_variables
+ restart_munin false
+ end
+ end
+end
+
+action :delete do
+ link plugin_path do
+ action :delete
+ end
+
+ if new_resource.conf
+ munin_plugin_conf new_resource.plugin do
+ action :delete
+ restart_munin false
+ end
+ end
+end
+
+action_class do
+ def plugin_path
+ "/etc/munin/plugins/#{new_resource.plugin}"
+ end
+
+ def target_path
+ if ::File.exist?(target)
+ target
+ elsif ::File.exist?("/usr/local/share/munin/plugins/#{target}")
+ "/usr/local/share/munin/plugins/#{target}"
+ elsif ::File.exist?("/usr/share/munin/plugins/#{target}")
+ "/usr/share/munin/plugins/#{target}"
+ end
+ end
+
+ def target
+ new_resource.target || new_resource.plugin
+ end
+end
+
+def after_created
+ notifies :restart, "service[munin-node]" if restart_munin