Puppet Class: php::extension::gd::params
- Inherited by:
-
php::extension::gd
- Defined in:
- manifests/extension/gd/params.pp
Overview
Class: php::extension::gd::params
Defaults file for the gd PHP extension
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 in your provider
- provider
-
The provider used to install the package
- inifile
-
The path to the extension 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 |
# File 'manifests/extension/gd/params.pp', line 41
class php::extension::gd::params {
$ensure = $php::params::ensure
$package = 'php5-gd'
$provider = undef
$inifile = "${php::params::config_root_ini}/gd.ini"
$settings = [ ]
}
|