X-Git-Url: https://git.openstreetmap.org/chef.git/blobdiff_plain/1e254e4af9e9eead1e3f5eae38079ac373df3909..ea0715b4be41a1d1600bba7a1f5d0b988708579f:/cookbooks/apache/providers/conf.rb diff --git a/cookbooks/apache/providers/conf.rb b/cookbooks/apache/providers/conf.rb index da339b955..489be8b84 100644 --- a/cookbooks/apache/providers/conf.rb +++ b/cookbooks/apache/providers/conf.rb @@ -21,13 +21,13 @@ def whyrun_supported? true end -action :create do +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 +35,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,7 +43,7 @@ action :disable do end end -action :delete do +action :delete do # ~FC017 if node[:lsb][:release].to_f >= 14.04 delete_conf end