aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSilvio Rhatto <rhatto@riseup.net>2015-06-19 13:37:42 -0300
committerSilvio Rhatto <rhatto@riseup.net>2015-06-19 13:37:42 -0300
commit00f138ec7462190a117d34cf13a5214c54c56ace (patch)
treea99af585539ce2958cb7cf09e6df0d7d44d01ac5
parent8d3a82fcea042bec9f3d2342317a97d84c5d8735 (diff)
downloadpuppet-nodo-00f138ec7462190a117d34cf13a5214c54c56ace.tar.gz
puppet-nodo-00f138ec7462190a117d34cf13a5214c54c56ace.tar.bz2
Adds phpunit-git into nodo::utils::development::php
-rw-r--r--manifests/utils/development/php.pp8
1 files changed, 8 insertions, 0 deletions
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,
+ },
+ }
}