aboutsummaryrefslogtreecommitdiff
path: root/manifests/resources.pp
diff options
context:
space:
mode:
authorSilvio Rhatto <rhatto@riseup.net>2018-04-12 12:29:24 -0300
committerSilvio Rhatto <rhatto@riseup.net>2018-04-12 12:29:24 -0300
commit19a3a2cda8682e8b00f8c8962461cd8b4fef10d5 (patch)
treec018047e563e9b39018597186fc316cb2a97fb3e /manifests/resources.pp
parent43017883c2d5533b083bfc0386f3fc064e80a65d (diff)
downloadpuppet-php-19a3a2cda8682e8b00f8c8962461cd8b4fef10d5.tar.gz
puppet-php-19a3a2cda8682e8b00f8c8962461cd8b4fef10d5.tar.bz2
Refactor and add php-fpm support
Diffstat (limited to 'manifests/resources.pp')
-rw-r--r--manifests/resources.pp4
1 files changed, 3 insertions, 1 deletions
diff --git a/manifests/resources.pp b/manifests/resources.pp
index 88e173c..fee8613 100644
--- a/manifests/resources.pp
+++ b/manifests/resources.pp
@@ -1,6 +1,8 @@
class php::resources {
$configs = hiera('php::config', {})
+ $pools = hiera('php::pool', {})
# Apply instances
- create_resources('php::config', $configs)
+ create_resources('php::config', $configs)
+ create_resources('php::fpm::pool', $pools)
}