X-Git-Url: https://git.openstreetmap.org./chef.git/blobdiff_plain/3a4d52bd4c0f8e6ae7679145846b7bc7845d8ace..e52e599f2d422640f127026d75234093a2233dfc:/cookbooks/apache/recipes/default.rb diff --git a/cookbooks/apache/recipes/default.rb b/cookbooks/apache/recipes/default.rb index 30f77340d..6c2ee7932 100644 --- a/cookbooks/apache/recipes/default.rb +++ b/cookbooks/apache/recipes/default.rb @@ -28,11 +28,11 @@ else %w(event itk prefork worker).each do |mpm| if mpm == node[:apache][:mpm] apache_module "mpm_#{mpm}" do - action [ :enable ] + action [:enable] end else apache_module "mpm_#{mpm}" do - action [ :disable ] + action [:disable] end end end @@ -63,7 +63,7 @@ template "/etc/apache2/ports.conf" do end service "apache2" do - action [ :enable, :start ] + action [:enable, :start] supports :status => true, :restart => true, :reload => true end @@ -78,7 +78,7 @@ apache_module "status" do end apache_module "reqtimeout" do - action [ :disable ] + action [:disable] end munin_plugin "apache_accesses"