From 913de457ced86c224e687d73729add48f4fef84f Mon Sep 17 00:00:00 2001 From: Tom Hughes Date: Tue, 14 Jul 2020 09:17:13 +0100 Subject: [PATCH] Install php-fpm whenever we install php This stops apt (un)helpfully installing and activating mod_php for us. --- cookbooks/php/recipes/default.rb | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) 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 +] -- 2.45.1