From: Silvio Rhatto Date: Fri, 19 Jun 2015 16:37:42 +0000 (-0300) Subject: Adds phpunit-git into nodo::utils::development::php X-Git-Url: https://gitweb.fluxo.info/?a=commitdiff_plain;h=00f138ec7462190a117d34cf13a5214c54c56ace;p=puppet-nodo.git Adds phpunit-git into nodo::utils::development::php --- diff --git a/manifests/utils/development/php.pp b/manifests/utils/development/php.pp index f072b43..6145248 100644 --- a/manifests/utils/development/php.pp +++ b/manifests/utils/development/php.pp @@ -2,4 +2,12 @@ class nodo::utils::development::php { package { [ 'php5-xdebug', 'phpunit' ]: ensure => present, } + + # Jessie onwards + package { 'phpunit-git': + ensure => $::lsbdistcodename ? { + 'wheezy' => absent, + default => present, + }, + } }