]> git.openstreetmap.org Git - chef.git/blob - cookbooks/munin/providers/plugin.rb
2937190665a63025bbebe5ce350e34df90f6048d
[chef.git] / cookbooks / munin / providers / plugin.rb
1 #
2 # Cookbook Name:: 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 #     http://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 def whyrun_supported?
21   true
22 end
23
24 action :create do
25   link_action = case target_path
26                 when nil then :delete
27                 else :create
28                 end
29
30   l = link plugin_path do
31     action link_action
32     to target_path
33     notifies :restart, "service[munin-node]"
34   end
35
36   updated = l.updated_by_last_action?
37
38   if new_resource.conf
39     c = munin_plugin_conf new_resource.name do
40       cookbook new_resource.conf_cookbook
41       template new_resource.conf
42       variables new_resource.conf_variables
43     end
44
45     updated ||= c.updated_by_last_action?
46   end
47
48   new_resource.updated_by_last_action(updated)
49 end
50
51 action :delete do
52   l = link plugin_path do
53     action :delete
54     notifies :restart, "service[munin-node]"
55   end
56
57   updated = l.updated_by_last_action?
58
59   if new_resource.conf
60     c = munin_plugin_conf new_resource.name do
61       action :delete
62     end
63
64     updated ||= c.updated_by_last_action?
65   end
66
67   new_resource.updated_by_last_action(updated)
68 end
69
70 def plugin_path
71   "/etc/munin/plugins/#{new_resource.name}"
72 end
73
74 def target_path
75   case
76   when ::File.exist?(target)
77     target
78   when ::File.exist?("/usr/local/share/munin/plugins/#{target}")
79     "/usr/local/share/munin/plugins/#{target}"
80   when ::File.exist?("/usr/share/munin/plugins/#{target}")
81     "/usr/share/munin/plugins/#{target}"
82   end
83 end
84
85 def target
86   new_resource.target || new_resource.name
87 end