aboutsummaryrefslogtreecommitdiff
path: root/manifests/resources.pp
blob: b2da7015a824959799bd78da0b8a1c0cf6a49dc1 (plain)
1
2
3
4
5
6
7
8
class php::resources {
  $configs = lookup('php::config', undef, undef,    {})
  $pools   = lookup('php::fpm::pool', undef, undef, {})

  # Apply instances
  create_resources('php::config',    $configs)
  create_resources('php::fpm::pool', $pools)
}