From 42a768ae8359f16bd6620d3b61a236310215827c Mon Sep 17 00:00:00 2001 From: Tom Hughes Date: Wed, 22 Nov 2017 13:29:06 +0000 Subject: [PATCH 1/1] Use declare_resource to avoid conflict with "package" property --- cookbooks/apache/resources/module.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cookbooks/apache/resources/module.rb b/cookbooks/apache/resources/module.rb index 7947071e7..8b611d2c8 100644 --- a/cookbooks/apache/resources/module.rb +++ b/cookbooks/apache/resources/module.rb @@ -26,7 +26,7 @@ property :variables, :kind_of => Hash, :default => {} 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 -- 2.43.2