X-Git-Url: https://git.openstreetmap.org./chef.git/blobdiff_plain/741593ee2bf203c9261f604d094e3d8e621698a8..9f0765287dea0835730db9f46c11b457a2efa165:/cookbooks/ohai/resources/plugin.rb diff --git a/cookbooks/ohai/resources/plugin.rb b/cookbooks/ohai/resources/plugin.rb index 9367a4d83..72719e2ec 100644 --- a/cookbooks/ohai/resources/plugin.rb +++ b/cookbooks/ohai/resources/plugin.rb @@ -17,21 +17,30 @@ # limitations under the License. # +unified_mode true + default_action :create property :plugin, :kind_of => String, :name_property => true -property :template, :kind_of => String, :required => true +property :template, :kind_of => String, :required => [:create] action :create do ohai new_resource.plugin do action :nothing end + directory "/etc/chef/ohai/plugins" do + owner "root" + group "root" + mode "755" + recursive true + end + declare_resource :template, plugin_path do source new_resource.template owner "root" group "root" - mode 0o644 + mode "644" notifies :reload, "ohai[#{new_resource.plugin}]" end end @@ -44,6 +53,6 @@ end action_class do def plugin_path - "/etc/chef/ohai/#{new_resource.plugin}.rb" + "/etc/chef/ohai/plugins/#{new_resource.plugin}.rb" end end