diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2018-06-21 13:27:52 -0300 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2018-06-21 13:27:52 -0300 |
commit | 8f64b83cfc0907519c2f677715aa8e6530a4a41c (patch) | |
tree | b38277d3e70f61c6aace0b5d68ee73842e631762 /manifests | |
parent | 9f1f1c7746a6305b328eaef9bf28057cb44971fe (diff) | |
download | puppet-php-8f64b83cfc0907519c2f677715aa8e6530a4a41c.tar.gz puppet-php-8f64b83cfc0907519c2f677715aa8e6530a4a41c.tar.bz2 |
Fix package version at php::fpm::pool
Diffstat (limited to 'manifests')
-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 4941cbc..188670e 100644 --- a/manifests/fpm/pool.pp +++ b/manifests/fpm/pool.pp @@ -16,7 +16,7 @@ define php::fpm::pool( file { "/etc/php/${version}/fpm/pool.d/${name}.conf": ensure => $ensure, source => $source, - require => Package['php-fpm'], + require => Package["php${version}-fpm"], notify => Service["php${version}-fpm"], } } |