Version information
This version is compatible with:
- Puppet Enterprise 2017.2.x, 2017.1.x, 2016.5.x, 2016.4.x
- Puppet >= 3.8.7 < 5.0.0
- , , , , , , OpenSUSE
Start using this module
Add this module to your Puppetfile:
mod 'puppet-php', '4.0.0'Learn more about managing modules with a PuppetfileDocumentation
Current Status
As the original creators of puppet-php are no longer maintaining the module, it has been handed over into the care of Vox Pupuli.
Please be sure to update all your links to the new location.
voxpupuli/php Puppet Module
voxpupuli/php is a Puppet module for managing PHP with a strong focus
on php-fpm. The module aims to use sane defaults for the supported
architectures. We strive to support all recent versions of Debian,
Ubuntu, RedHat/CentOS, openSUSE/SLES and FreeBSD. Managing Apache
with mod_php is not supported.
This originally was a fork of jippi/puppet-php (nodes-php on Puppet Forge) but has since been rewritten in large parts.
Usage
Quickest way to get started is simply include'ing the php class.
include '::php'
Or, you can override defaults and specify additional custom
configurations by declaring class { '::php': } with parameters:
class { '::php':
ensure => latest,
manage_repos => true,
fpm => true,
dev => true,
composer => true,
pear => true,
phpunit => false,
}
Optionally the PHP version or configuration root directory can be changed also:
class { '::php::globals':
php_version => '7.0',
config_root => '/etc/php/7.0',
}->
class { '::php':
manage_repos => true
}
There are more configuration options available. Please refer to the auto-generated documentation at http://php.puppet.mayflower.de/.
Defining php.ini settings
PHP configuration parameters in php.ini files can be defined as parameter
settings on the main php class, or php::fpm / php::cli classes,
or php::extension resources for each component independently.
These settings are written into their respective php.ini file. Global
settings in php::settings are merged with the settings of all components.
Please note that settings of extensions are always independent.
In the following example the PHP options and timezone will be set in all PHP configurations, i.e. the PHP cli application and all php-fpm pools.
class { '::php':
settings => {
'PHP/max_execution_time' => '90',
'PHP/max_input_time' => '300',
'PHP/memory_limit' => '64M',
'PHP/post_max_size' => '32M',
'PHP/upload_max_filesize' => '32M',
'Date/date.timezone' => 'Europe/Berlin',
},
}
Installing extensions
PHP configuration parameters in php.ini files can be defined
as parameter extensions on the main php class. They are
activated for all activated SAPIs.
class { '::php':
extensions => {
bcmath => { },
imagick => {
provider => pecl,
},
xmlrpc => { },
memcached => {
provider => 'pecl',
header_packages => [ 'libmemcached-devel', ],
},
apc => {
provider => 'pecl',
settings => {
'apc/stat' => '1',
'apc/stat_ctime' => '1',
},
sapi => 'fpm',
},
},
}
See the documentation
of the php::extension resource for all available parameters and default
values.
Defining php-fpm pools
If different php-fpm pools are required, you can use php::fpm::pool
defined resource type. A single pool called www will be configured
by default. Specify additional pools like so:
php::fpm::pool { 'www2':
listen => '127.0.1.1:9000',
}
For an overview of all possible parameters for php::fpm::pool resources
please see its documention.
Alternative examples using Hiera
Alternative to the Puppet DSL code examples above, you may optionally define your PHP configuration using Hiera.
Below are all the examples you see above, but defined in YAML format for use with Hiera.
---
php::ensure: latest
php::manage_repos: true
php::fpm: true
php::dev: true
php::composer: true
php::pear: true
php::phpunit: false
php::settings:
'PHP/max_execution_time': '90'
'PHP/max_input_time': '300'
'PHP/memory_limit': '64M'
'PHP/post_max_size': '32M'
'PHP/upload_max_filesize': '32M'
'Date/date.timezone': 'Europe/Berlin'
php::extensions:
bcmath: {}
xmlrpc: {}
imagick:
provider: pecl
memcached:
provider: pecl
header_packages:
- libmemcached-dev
apc:
provider: pecl
settings:
'apc/stat': 1
'apc/stat_ctime': 1
sapi: 'fpm'
php::fpm::pools:
www2:
listen: '127.0.1.1:9000'
Notes
Debian squeeze & Ubuntu precise come with PHP 5.3
On Debian-based systems, we use php5enmod to enable extension-specific
configuration. This script is only present in php5 packages beginning with
version 5.4. Furthermore, PHP 5.3 is not supported by upstream anymore.
We strongly suggest you use a recent PHP version, even if you're using an
older though still supported distribution release. Our default is to have
php::manage_repos enabled to add apt sources for
Dotdeb on Debian and
ppa:ondrej/php5 on
Ubuntu with packages for the current stable PHP version closely tracking
upstream.
Ubuntu systems and Ondřej's PPA
The older Ubuntu PPAs run by Ondřej have been deprecated (ondrej/php5, ondrej/php5.6) in favor of a new PPA: ondrej/php which contains all 3 versions of PHP: 5.5, 5.6, and 7.0 Here's an example in hiera of getting PHP 5.6 installed with php-fpm, pear/pecl, and composer:
php::globals::php_version: '5.6'
php::fpm: true
php::dev: true
php::composer: true
php::pear: true
php::phpunit: false
If you do not specify a php version, in Ubuntu the default will be 7.0 if you are running Xenial (16.04), otherwise PHP 5.6 will be installed (for other versions)
Apache support
Apache with mod_php is not supported by this module. Please use
puppetlabs/apache instead.
We prefer using php-fpm. You can find an example Apache vhost in
manifests/apache_vhost.pp that shows you how to use mod_proxy_fcgi to
connect to php-fpm.
Facts
We deliver a phpversion fact with this module. This is explicitly NOT intended
to be used within your puppet manifests as it will only work on your second puppet
run. Its intention is to make querying PHP versions per server easy via PuppetDB or Foreman.
FreeBSD support
On FreeBSD systems we purge the system-wide extensions.ini in favour of
per-module configuration files.
Please also note that support for Composer and PHPUnit on FreeBSD is untested and thus likely incomplete.
Running the test suite
To run the tests install the ruby dependencies with bundler and execute
rake:
bundle install --path vendor/bundle
bundle exec rake
Bugs & New Features
If you happen to stumble upon a bug, please feel free to create a pull request with a fix (optionally with a test), and a description of the bug and how it was resolved.
Or if you're not into coding, simply create an issue adding steps to let us reproduce the bug and we will happily fix it.
If you have a good idea for a feature or how to improve this module in general, please create an issue to discuss it. We are very open to feedback. Pull requests are always welcome.
We hate orphaned and unmaintained Puppet modules as much as you do and therefore promise that we will continue to maintain this module and keep response times to issues short. If we happen to lose interest, we will write a big fat warning into this README to let you know.
License
The project is released under the permissive MIT license.
The source can be found at github.com/voxpupuli/puppet-php.
This Puppet module was originally maintained by some fellow puppeteers at Mayflower GmbH and is now maintained by Vox Pupuli.
Changelog
2017-02-11 Release 4.0.0
This is the last release with Puppet3 support!
- Fix a bug turning
manage_reposoff on wheezy - Fix a deprecation warning on
apt::keywhen usingmanage_reposon wheezy (#110). This change requires puppetlabs/apt at >= 1.8.0 - Allow removal of config values (#124)
- Add
phpversionfact, for querying through PuppetDB or Foreman (#119) - Allow configuring the fpm pid file (#123)
- Add embedded SAPI support (#115)
- Add options to fpm config and pool configs (#139)
- Add parameter logic for PHP 7 on Ubuntu/Debian (#180)
- add SLES PHP 7.0 Support (#220)
- allow packaged extensions to be loaded as zend extensions
- Fix command to enable php extensions (#226)
- Fix many rucocop warnings
- Update module Ubuntu 14.04 default to official repository setup
- Fix dependency for extentions with no package source
- Allow packaged extensions to be loaded as Zend extensions
- Support using an http proxy for downloading composer
- Refactor classes php::fpm and php::fpm:service
- Manage apache/PHP configurations on Debian and RHEL systems
- use voxpupuli/archive to download composer
- respect $manage_repos, do not include ::apt if set to false
- Bump min version_requirement for Puppet + deps
- allow pipe param for pecl extensions
- Fix: composer auto_update: exec's environment must be array
Breaking Changes
- Deep merge
php::extensionsthe same way asphp::settings. This technically is a breaking change but should not affect many people. - PHP 5.6 is the default version on all systems now (except Ubuntu 16.04, where 7.0 is the default).
- There's a php::globals class now, where global paramters (like the PHP version) are set. (#132)
- Removal of php::repo::ubuntu::ppa (#218)
3.4.2
- Fix a bug that changed the default of
php::manage_repostofalseon Debian-based operating systems except wheezy. It should be turned on by default. (#116) - Fix a bug that prevented reloading php-fpm on Ubuntu in some cases. (#117, #107)
3.4.1
- Fix reloading php-fpm on Ubuntu trusty & utopic (#107)
3.4.0
- New parameter
ppafor classphp::repo::ubuntuto specify the ppa name to use. We default toondrej/php5-oldstablefor precise andondrej/php5otherwise. - New parameter
includeforphp::fpm::poolresources to specify custom configuration files.
3.3.1
- Make
systemd_intervalparameter for classphp::fpm::configoptional
3.3.0
php::extensionresources:- New boolean parameter
settings_prefixto automatically prefix all settings keys with the extensions names. Defaults to false to ensurre the current behaviour. - New string parameter
so_nameto set the DSO name of an extension if it doesn't match the package name. - New string parameter
php_api_versionto set a custom api version. If notundef, theso_nameis prefixed with the full module path in the ini file. Defaults toundef.
- New boolean parameter
- The default of the parameter
listen_allowed_clientsofphp::fpm::poolresources is nowundefinstead of'127.0.0.1'. This way it is more intuitive to change the default tcp listening socket at127.0.0.1:9000to a unix socket by only setting thelistenparameter instead of additionally needing to unsetlisten_allowed_clients. This has no security implications. - New parameters for the
php::fpm::configclass:error_logsyslog_facilitysyslog_identsystemd_interval
- A bug that prevented merging the global
php::settingsparameter into SAPI configs forphp::cliandphp::fpmwas fixed. - The dotdeb repos are now only installed for Debian wheezy as Debian jessie has a sufficiently recent PHP version.
3.2.2
- Fix a typo in hiera keys
php::settings&php::fpm::settings(#83)
3.2.1
- Fixed default
yum_repokey inphp::repo::redhat - On Ubuntu precise we now use the ondrej/php5-oldstable ppa. This can be
manually enabled with by setting
$php::repo::ubuntu::oldstabletotrue. $php::ensurenow defaults topresentinstead oflatest. Though, strictly speaking, this represents a functional change, we consider this to be a bugfix because automatic updates should be enabled explicitely.$php::ensureis not anymore passed tophp::extensionresources as default ensure parameter because this doesn't make sense.
3.2.0
- Support for FreeBSD added by Frank Wall
- RedHat now uses remi-php56 yum repo by default
- The resource
php::fpm::poolis now public, you can use it in your manifests without using$php::fpm::pools - We now have autogenerated documentation using
puppetlabs/strings
3.1.0
- New parameter
pool_purgeforphp::extensionto remove files not managed by puppet from the pool directory. - The
pecl_sourceparameter forphp::extensionwas renamend tosourcebecause it is also useful for PEAR extensions.pecl_sourcecan still be used but is deprecated and will be removed in the next major release. - Parameters referring to time in
php::fpm::configcan now be specified with units (i.e.'60s','1d'):emergency_restart_thresholdemergency_restart_intervalprocess_control_timeout
- The PEAR version is not independant of
$php::ensureand can be configured with$php::pear_ensure - Give special thanks to the contributors of this release:
- Petr Sedlacek
- Sherlan Moriah
3.0.1
- Fix typo in package suffix for php-fpm on RHEL in params.pp
3.0.0
- Removes
$php::fpm::pool::error_log. Use thephp_admin_flagandphp_admin_valueparameters to set the php settingslog_errorsanderror_loginstead. - Removes support for PHP 5.3 on Debian-based systems. See the notes in the README for more information.
- Removes the
php_versionfact which had only worked on the later puppet runs. - Moves CLI-package handling to
php::packages - Allows changing the package prefix via
php::package_prefix. - Moves FPM-package handling from
php::fpm::packagetophp::fpm - Changes
php::packages, so thatphp::packages::packagesbecomesphp::packages::namesand are installed andphp::packages::names_to_prefixare installed prefixed byphp::package_prefix. - PHPUnit is now installed as phar in the same way composer is installed, causing all parameters to change
- The
php::extensionresource has a new parameter:zend. If set to true, exenstions that were installed with pecl are loaded withzend_extension.
2.0.4
- Style fixes all over the place
- Module dependencies are now bound to the current major version
2.0.3
- Some issues & bugs with extensions were fixed
- If you set the
providerparameter of an extension to"none", no extension packages will be installed - The EPEL yum repo has been added for RedHat systems
2.0.2
- Adds support for
header_packageson all extensions - Adds
install_optionsto pear package provider
2.0.1
- This is a pure bug fix release
- Fix for CVE 2014-0185 (https://bugs.php.net/bug.php?id=67060)
2.0.0
- Remove augeas and switch to puppetlabs/inifile for configs
- Old:
settings => [‘set PHP/short_open_tag On‘] - New:
settings => {‘PHP/short_open_tag’ => ‘On‘}
- Old:
- Settings parmeter cleanups
- The parameter
configofphp::extensionresources is now calledsettings - The parameters
userandgroupofphp::fpmhave been moved tophp::fpm::config - New parameter
php::settingsfor global settings (i.e. CLI & FPM)
- The parameter
- New parameter
php::clito disable CLI if supported
1.1.2
- SLES: PHP 5.5 will now be installed
- Pecl extensions now autoload the .so based on $name instead of $title
1.1.1
- some nasty bugs with the pecl php::extension provider were fixed
- php::extension now has a new pecl_source parameter for specifying custom source channels for the pecl provider
1.1.0
- add phpunit to main class
- fix variable access for augeas
1.0.2
- use correct suse apache service name
- fix anchoring of augeas
1.0.1
- fixes #9 undefined pool_base_dir
1.0.0
Initial release
Dependencies
- puppetlabs/stdlib (>= 4.6.0 < 5.0.0)
- puppetlabs/apt (>= 2.1.0 < 3.0.0)
- puppetlabs/inifile (>=1.4.1 < 2.0.0)
- darin/zypprepo (>=1.0.2 < 2.0.0)
- puppet/archive (>= 1.0.0 < 2.0.0)
- example42/yum (>= 2.1.28 < 3.0.0)