Fix missing PHP-FPM restart after Puppet provisioning finished

refs #3527
This commit is contained in:
Mario Rimann 2019-02-13 23:12:20 +01:00
parent 6a23a641ac
commit 7d1573ef33
2 changed files with 2 additions and 1 deletions

View File

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

View File

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