Puppet Class: php::fpm

Defined in:
manifests/fpm.pp

Overview

Parameters:

  • fpm_ini_content (Any) (defaults to: undef)
  • fpm_ini_source (Any) (defaults to: undef)
  • fpm_conf_content (Any) (defaults to: undef)
  • fpm_conf_source (Any) (defaults to: undef)


1
2
3
4
5
# File 'manifests/fpm.pp', line 1

class php::fpm($fpm_ini_content = undef, $fpm_ini_source = undef, $fpm_conf_content = undef, $fpm_conf_source = undef) {
    include php, php::fpm::install, php::fpm::config, php::fpm::service

    Class["php::config"] ~> Class["php::fpm::service"]
}