]> git.openstreetmap.org Git - chef.git/blobdiff - cookbooks/apache/resources/module.rb
Enable unified mode for custom resources
[chef.git] / cookbooks / apache / resources / module.rb
index 0ac0f8f01471cd161811c8a537155d6f774b7535..5de2bfcaade352b9623842a44031b02e297e1799 100644 (file)
 # limitations under the License.
 #
 
+unified_mode true
+
 default_action [:install, :enable]
 
-property :module, :kind_of => String, :name_attribute => true
+property :module, :kind_of => String, :name_property => true
 property :package, :kind_of => String
 property :conf, :kind_of => String
 property :variables, :kind_of => Hash, :default => {}
@@ -33,7 +35,7 @@ action :install do
       source new_resource.conf
       owner "root"
       group "root"
-      mode 0o644
+      mode "644"
       variables new_resource.variables
     end
   end