Puppet module php: install package php-pecl-xdebug
This commit is contained in:
parent
a83ab2c7cb
commit
4cd2469a5f
|
@ -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' ]: }
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue