From: Tom Hughes Date: Tue, 14 Jul 2020 08:17:13 +0000 (+0100) Subject: Install php-fpm whenever we install php X-Git-Url: https://git.openstreetmap.org/chef.git/commitdiff_plain/913de457ced86c224e687d73729add48f4fef84f Install php-fpm whenever we install php This stops apt (un)helpfully installing and activating mod_php for us. --- diff --git a/cookbooks/php/recipes/default.rb b/cookbooks/php/recipes/default.rb index b5962dd9f..3164006a4 100644 --- a/cookbooks/php/recipes/default.rb +++ b/cookbooks/php/recipes/default.rb @@ -17,4 +17,7 @@ # limitations under the License. # -package "php" +package %W[ + php + php#{node[:php][:version]}-fpm +]