From 1b82a7cc787da2a334c93096c7691230fe96b022 Mon Sep 17 00:00:00 2001 From: Stefan Galinski <stefan@sgalinski.de> Date: Wed, 26 Aug 2020 15:52:05 +0200 Subject: [PATCH] [BUGFIX] Add missing php fpm restart in order to work directly --- recipes/default.rb | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/recipes/default.rb b/recipes/default.rb index 8b9afcf..4b804f9 100644 --- a/recipes/default.rb +++ b/recipes/default.rb @@ -29,3 +29,7 @@ end template '/etc/php/' + node['ubuntu_base']['php_version'] + '/mods-available/xdebug.ini' do mode '0644' end + +service "php#{node['ubuntu_base']['php_version']}-fpm" do + action :restart +end -- GitLab