Merge pull request #3686 from mrimann/fix/vagrant-box-php-fpm-restart-3527

Fix missing PHP-FPM restart after Puppet provisioning finished

(cherry picked from commit 9073793210)
Signed-off-by: Johannes Meyer <johannes.meyer@icinga.com>
This commit is contained in:
Johannes Meyer 2019-04-16 13:32:35 +02:00
parent 6a8a7e397b
commit 362b4026a1
2 changed files with 2 additions and 1 deletions

View File

@ -30,6 +30,7 @@ class php {
-> service { 'rh-php71-php-fpm':
ensure => running,
enable => true,
alias => 'php-fpm',
}
package { 'php-pecl-xdebug':

View File

@ -36,7 +36,7 @@ class icingaweb2_dev (
'php-phpunit-PHPUnit'
]:
ensure => latest,
notify => Service['apache'],
notify => Service['php-fpm'],
require => Class['icinga_packages'],
}