3 # Provider:: munin_plugin
5 # Copyright:: 2013, OpenStreetMap Foundation
7 # Licensed under the Apache License, Version 2.0 (the "License");
8 # you may not use this file except in compliance with the License.
9 # You may obtain a copy of the License at
11 # https://www.apache.org/licenses/LICENSE-2.0
13 # Unless required by applicable law or agreed to in writing, software
14 # distributed under the License is distributed on an "AS IS" BASIS,
15 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16 # See the License for the specific language governing permissions and
17 # limitations under the License.
20 default_action :create
22 property :plugin, :kind_of => String, :name_property => true
23 property :target, :kind_of => String
24 property :conf, :kind_of => String
25 property :conf_cookbook, :kind_of => String
26 property :conf_variables, :kind_of => Hash, :default => {}
27 property :restart_munin, :kind_of => [TrueClass, FalseClass], :default => true
30 link_action = case target_path
41 munin_plugin_conf new_resource.plugin do
42 cookbook new_resource.conf_cookbook
43 template new_resource.conf
44 variables new_resource.conf_variables
56 munin_plugin_conf new_resource.plugin do
65 "/etc/munin/plugins/#{new_resource.plugin}"
69 if ::File.exist?(target)
71 elsif ::File.exist?("/usr/local/share/munin/plugins/#{target}")
72 "/usr/local/share/munin/plugins/#{target}"
73 elsif ::File.exist?("/usr/share/munin/plugins/#{target}")
74 "/usr/share/munin/plugins/#{target}"
79 new_resource.target || new_resource.plugin
84 notifies :restart, "service[munin-node]" if restart_munin