]> git.openstreetmap.org Git - chef.git/commitdiff
Use declare_resource to avoid conflict with "package" property
authorTom Hughes <tom@compton.nu>
Wed, 22 Nov 2017 13:29:06 +0000 (13:29 +0000)
committerTom Hughes <tom@compton.nu>
Wed, 22 Nov 2017 13:29:06 +0000 (13:29 +0000)
cookbooks/apache/resources/module.rb

index 7947071e7fe20d4715e19adbdf6d833d40c4d13e..8b611d2c824be09a4486efb85ecb38de60b0bbb9 100644 (file)
@@ -26,7 +26,7 @@ property :variables, :kind_of => Hash, :default => {}
 property :restart_apache, :kind_of => [TrueClass, FalseClass], :default => true
 
 action :install do
 property :restart_apache, :kind_of => [TrueClass, FalseClass], :default => true
 
 action :install do
-  package package_name unless installed?
+  declare_resource :package, package_name unless installed?
 
   if new_resource.conf # ~FC023
     template available_name("conf") do
 
   if new_resource.conf # ~FC023
     template available_name("conf") do