X-Git-Url: https://git.openstreetmap.org./chef.git/blobdiff_plain/141871be7be50fe092cef6c84cfc84f2393c3545..810ba51e5ea149f4c5e836e0828cd462b04a2727:/cookbooks/ohai/resources/plugin.rb diff --git a/cookbooks/ohai/resources/plugin.rb b/cookbooks/ohai/resources/plugin.rb index 5d550371f..72719e2ec 100644 --- a/cookbooks/ohai/resources/plugin.rb +++ b/cookbooks/ohai/resources/plugin.rb @@ -17,6 +17,8 @@ # limitations under the License. # +unified_mode true + default_action :create property :plugin, :kind_of => String, :name_property => true @@ -27,7 +29,7 @@ action :create do action :nothing end - directory "/etc/chef/ohai" do + directory "/etc/chef/ohai/plugins" do owner "root" group "root" mode "755" @@ -51,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