aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSilvio Rhatto <rhatto@riseup.net>2018-06-21 13:27:52 -0300
committerSilvio Rhatto <rhatto@riseup.net>2018-06-21 13:27:52 -0300
commit8f64b83cfc0907519c2f677715aa8e6530a4a41c (patch)
treeb38277d3e70f61c6aace0b5d68ee73842e631762
parent9f1f1c7746a6305b328eaef9bf28057cb44971fe (diff)
downloadpuppet-php-8f64b83cfc0907519c2f677715aa8e6530a4a41c.tar.gz
puppet-php-8f64b83cfc0907519c2f677715aa8e6530a4a41c.tar.bz2
Fix package version at php::fpm::pool
-rw-r--r--manifests/fpm/pool.pp2
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"],
}
}