Puppet module php: install package php-pecl-xdebug

This commit is contained in:
Alexander A. Klimov 2016-02-19 13:37:50 +01:00
parent a83ab2c7cb
commit 4cd2469a5f
1 changed files with 7 additions and 0 deletions

View File

@ -17,6 +17,7 @@
class php {
include apache
include epel
package { 'php':
ensure => latest,
@ -24,5 +25,11 @@ class php {
require => Package['apache'],
}
package { 'php-pecl-xdebug':
ensure => latest,
notify => Service['apache'],
require => Class['epel'],
}
php::phpd { ['error_reporting', 'timezone', 'xdebug_settings' ]: }
}