]> git.openstreetmap.org Git - chef.git/blobdiff - cookbooks/apache/providers/conf.rb
Fix some foodcritic complaints
[chef.git] / cookbooks / apache / providers / conf.rb
index da339b955098f9d74b87e2e3c97c0e0322d10f17..489be8b84f4dee7ef5c3790b03b37f67dbaa9cd9 100644 (file)
@@ -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