Puppet Class: php::fpm::params
Overview
Class: php::fpm::params
Defaults file for fpm package
Parameters
No parameters
Variables
- ensure
-
The version of the package to install Could be “latest”, “installed” or a pinned version This matches “ensure” from Package
- package
-
The package name for fpm package
- provider
-
The provider used to install package
- inifile
-
The path to the ini php5 fpm ini file
- settings
-
Hash with ‘set’ nested hash of key => value set changes to agues when applied to inifile
Examples
No examples
Authors
Christian “Jippi” Winther <jippignu@gmail.com>
Copyright
Copyright 2012-2013 Christian “Jippi” Winther, unless otherwise noted.
41 42 43 44 45 46 47 48 49 50 51 52 53 54 |
# File 'manifests/fpm/params.pp', line 41
class php::fpm::params inherits php::params {
$ensure = $::php::params::ensure
$package = 'php5-fpm'
$provider = undef
$inifile = '/etc/php5/fpm/php.ini'
$settings = [ ]
$service_name = 'php5-fpm'
$service_ensure = 'running'
$service_enable = true
$service_has_status = true
}
|