]> git.openstreetmap.org Git - chef.git/commitdiff
Improve mpm handling
authorTom Hughes <tom@compton.nu>
Tue, 15 Jul 2014 09:01:53 +0000 (10:01 +0100)
committerTom Hughes <tom@compton.nu>
Tue, 15 Jul 2014 09:01:53 +0000 (10:01 +0100)
cookbooks/apache/recipes/default.rb

index ebf404945f165b2e9e8408dbe880e6ac5e6aed33..2d353950ee71d011fda03c4137fe3e571fc3d5e8 100644 (file)
 #
 
 package "apache2"
-package "apache2-mpm-#{node[:apache][:mpm]}"
 
-#In Apache 2.4 mpm have become runtime loadable modules
-#Diable all mpm except the required mpm
-if node[:lsb][:release].to_f >= 14.04
-  mpms = ['event', 'itk', 'prefork', 'worker']
-  mpms.reject{|u| u == node[:apache][:mpm]}.each do |mpm|
-    apache_module mpm do
-      action [ :disable ]
+if node[:lsb][:release].to_f < 14.04
+  package "apache2-mpm-#{node[:apache][:mpm]}" do
+    notifies :restart, "service[apache2]"
+  end
+else
+  ["event", "itk", "prefork", "worker"].each do |mpm|
+    if mpm == node[:apache][:mpm]
+      apache_module mpm do
+        action [ :install, :enable ]
+        package "apache2-mpm-#{node[:apache][:mpm]}"
+      end
+    else
+      apache_module mpm do
+        action [ :disable ]
+        package "apache2-mpm-#{node[:apache][:mpm]}"
+      end
     end
   end
 end
@@ -50,7 +58,6 @@ end
 service "apache2" do
   action [ :enable, :start ]
   supports :status => true, :restart => true, :reload => true
-  subscribes :restart, "package[apache2-mpm-#{node[:apache][:mpm]}]"
   subscribes :reload, "template[/etc/apache2/httpd.conf]"
 end