]> git.openstreetmap.org Git - chef.git/blobdiff - cookbooks/apache/resources/module.rb
Fix new cookstyle warnings
[chef.git] / cookbooks / apache / resources / module.rb
index 7e45b78e2c9207d6c0083563894a591c919bd773..52cde2f8547272f71c03b338b128ffd03ccda2a5 100644 (file)
@@ -19,7 +19,7 @@
 
 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 => {}
@@ -28,7 +28,7 @@ property :restart_apache, :kind_of => [TrueClass, FalseClass], :default => true
 action :install do
   declare_resource :package, package_name unless installed?
 
-  if new_resource.conf # ~FC023
+  if new_resource.conf
     template available_name("conf") do
       source new_resource.conf
       owner "root"