]> git.openstreetmap.org Git - chef.git/blobdiff - cookbooks/php/recipes/fpm.rb
Use strings for file modes
[chef.git] / cookbooks / php / recipes / fpm.rb
index be90a67833cf3e73f4fad041bdb0ee9c78a4a323..ecda9640cefb750fd0ae9f1c93beb18adbf6c21a 100644 (file)
@@ -17,7 +17,6 @@
 # limitations under the License.
 #
 
-include_recipe "apache"
 include_recipe "php"
 
 package "php-fpm"
@@ -26,16 +25,10 @@ template "/etc/php/#{node[:php][:version]}/fpm/conf.d/99-chef.ini" do
   source "php-fpm.ini.erb"
   owner "root"
   group "root"
-  mode 0o644
+  mode "644"
+  notifies :restart, "service[php#{node[:php][:version]}-fpm]"
 end
 
 service "php#{node[:php][:version]}-fpm" do
   action [:enable, :start]
 end
-
-apache_module "proxy"
-apache_module "proxy_fcgi"
-
-apache_conf "php#{node[:php][:version]}-fpm" do
-  action :enable
-end