diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2018-04-12 12:54:20 -0300 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2018-04-12 12:54:20 -0300 |
commit | 5463cc3ce5ad481b6f72cebd20c40af8017848c1 (patch) | |
tree | 5e12278da77d0f144ff73384c767d64ec1b20088 /manifests/fpm | |
parent | d6c4448ef33d3ab3fdc3cbf9b5eaaae2a8592195 (diff) | |
download | puppet-php-5463cc3ce5ad481b6f72cebd20c40af8017848c1.tar.gz puppet-php-5463cc3ce5ad481b6f72cebd20c40af8017848c1.tar.bz2 |
Fix php-fpm service requirements
Diffstat (limited to 'manifests/fpm')
-rw-r--r-- | manifests/fpm/pool.pp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/manifests/fpm/pool.pp b/manifests/fpm/pool.pp index 75560db..d587dff 100644 --- a/manifests/fpm/pool.pp +++ b/manifests/fpm/pool.pp @@ -17,6 +17,6 @@ define php::fpm::pool( ensure => $ensure, source => $source, require => Package['php-fpm'], - notify => Service["php-${version}-fpm"], + notify => Service["php${version}-fpm"], } } |