]> git.openstreetmap.org Git - chef.git/blobdiff - cookbooks/apache/recipes/default.rb
Improve mpm handling
[chef.git] / cookbooks / apache / recipes / default.rb
index 4fa9b3bc38655f87ebd403992f70d5f078992715..2d353950ee71d011fda03c4137fe3e571fc3d5e8 100644 (file)
 #
 
 package "apache2"
-package "apache2-mpm-#{node[:apache][:mpm]}"
+
+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
 
 admins = data_bag_item("apache", "admins")
 
@@ -39,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