]> git.openstreetmap.org Git - chef.git/blobdiff - cookbooks/ohai/resources/plugin.rb
vectortile: track osm2pgsql db age
[chef.git] / cookbooks / ohai / resources / plugin.rb
index 5d550371faf7997fa3d8396ab03fa60cf4a2b55d..72719e2ec21214016a8d1bff8f8b15290ebc4027 100644 (file)
@@ -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