X-Git-Url: https://git.openstreetmap.org/chef.git/blobdiff_plain/b20599b6503be65674c3e420be6cca91b507ac0a..a839868a4ce8d05946a97f83c1aa451028c07889:/cookbooks/apache/providers/conf.rb diff --git a/cookbooks/apache/providers/conf.rb b/cookbooks/apache/providers/conf.rb index 806a7076a..d7eddc636 100644 --- a/cookbooks/apache/providers/conf.rb +++ b/cookbooks/apache/providers/conf.rb @@ -21,13 +21,15 @@ def whyrun_supported? true end -action :create do +use_inline_resources + +action :create do # ~FC017 if node[:lsb][:release].to_f >= 14.04 create_conf end end -action :enable do +action :enable do # ~FC017 if node[:lsb][:release].to_f >= 14.04 enable_conf else @@ -35,7 +37,7 @@ action :enable do end end -action :disable do +action :disable do # ~FC017 if node[:lsb][:release].to_f >= 14.04 disable_conf else @@ -43,52 +45,41 @@ action :disable do end end -action :delete do +action :delete do # ~FC017 if node[:lsb][:release].to_f >= 14.04 delete_conf end end def create_conf - t = template available_name do + template available_name do cookbook new_resource.cookbook source new_resource.template owner "root" group "root" mode 0644 variables new_resource.variables - notifies :reload, "service[apache2]" if enabled? or available_name == enabled_name end - - new_resource.updated_by_last_action(t.updated_by_last_action?) end def enable_conf - l = link enabled_name do + link enabled_name do to available_name owner "root" group "root" - notifies :reload, "service[apache2]" end - - new_resource.updated_by_last_action(l.updated_by_last_action?) end def disable_conf - l = link enabled_name do + link enabled_name do action :delete - notifies :reload, "service[apache2]" end - - new_resource.updated_by_last_action(l.updated_by_last_action?) end def delete_conf - f = file available_name do + file available_name do action :delete end - - new_resource.updated_by_last_action(f.updated_by_last_action?) end def available_name @@ -106,7 +97,3 @@ def enabled_name "/etc/apache2/conf.d/#{new_resource.name}" end end - -def enabled? - ::File.exist?(enabled_name) -end