]> git.openstreetmap.org Git - chef.git/blob - cookbooks/munin/resources/plugin.rb
dede3cb534360b59b55b0650179ed77a1b0f8e36
[chef.git] / cookbooks / munin / resources / plugin.rb
1 #
2 # Cookbook:: munin
3 # Provider:: munin_plugin
4 #
5 # Copyright:: 2013, OpenStreetMap Foundation
6 #
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
10 #
11 #     https://www.apache.org/licenses/LICENSE-2.0
12 #
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.
18 #
19
20 default_action :create
21
22 property :plugin, :kind_of => String, :name_attribute => 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
28
29 action :create do
30   link_action = case target_path
31                 when nil then :delete
32                 else :create
33                 end
34
35   link plugin_path do
36     action link_action
37     to target_path
38   end
39
40   if new_resource.conf
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
45       restart_munin false
46     end
47   end
48 end
49
50 action :delete do
51   link plugin_path do
52     action :delete
53   end
54
55   if new_resource.conf
56     munin_plugin_conf new_resource.plugin do
57       action :delete
58       restart_munin false
59     end
60   end
61 end
62
63 action_class do
64   def plugin_path
65     "/etc/munin/plugins/#{new_resource.plugin}"
66   end
67
68   def target_path
69     if ::File.exist?(target)
70       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}"
75     end
76   end
77
78   def target
79     new_resource.target || new_resource.plugin
80   end
81 end
82
83 def after_created
84   notifies :restart, "service[munin-node]" if restart_munin && node[:recipes].include?("munin")
85 end