]> git.openstreetmap.org Git - chef.git/blobdiff - cookbooks/apache/providers/conf.rb
Get rid of pre 14.04 compatibility that is no longer needed
[chef.git] / cookbooks / apache / providers / conf.rb
index da339b955098f9d74b87e2e3c97c0e0322d10f17..9b9a7a1745a2e229c0ed8322179ecfd645c47073 100644 (file)
@@ -21,92 +21,59 @@ def whyrun_supported?
   true
 end
 
+use_inline_resources
+
 action :create do
-  if node[:lsb][:release].to_f >= 14.04
-    create_conf
-  end
+  create_conf
 end
 
 action :enable do
-  if node[:lsb][:release].to_f >= 14.04
-    enable_conf
-  else
-    create_conf
-  end
+  enable_conf
 end
 
 action :disable do
-  if node[:lsb][:release].to_f >= 14.04
-    disable_conf
-  else
-    delete_conf
-  end
+  disable_conf
 end
 
 action :delete do
-  if node[:lsb][:release].to_f >= 14.04
-    delete_conf
-  end
+  delete_conf
 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? || 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
-  if node[:lsb][:release].to_f >= 14.04
-    "/etc/apache2/conf-available/#{new_resource.name}.conf"
-  else
-    "/etc/apache2/conf.d/#{new_resource.name}"
-  end
+  "/etc/apache2/conf-available/#{new_resource.name}.conf"
 end
 
 def enabled_name
-  if node[:lsb][:release].to_f >= 14.04
-    "/etc/apache2/conf-enabled/#{new_resource.name}.conf"
-  else
-    "/etc/apache2/conf.d/#{new_resource.name}"
-  end
-end
-
-def enabled?
-  ::File.exist?(enabled_name)
+  "/etc/apache2/conf-enabled/#{new_resource.name}.conf"
 end