diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2015-11-03 17:56:26 -0200 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2015-11-03 17:56:26 -0200 |
commit | f91da8d7c1cd2fef535ac48d6d34524f90e870c7 (patch) | |
tree | 0673ccec0f323abc6ea3335921a2ad5bf2dd8f7f /manifests | |
parent | ea0a1fbe24b6b979d5eceef94514284aaabae334 (diff) | |
download | puppet-php-f91da8d7c1cd2fef535ac48d6d34524f90e870c7.tar.gz puppet-php-f91da8d7c1cd2fef535ac48d6d34524f90e870c7.tar.bz2 |
Suhosin not available anymore
Diffstat (limited to 'manifests')
-rw-r--r-- | manifests/init.pp | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/manifests/init.pp b/manifests/init.pp index aba16c6..b28f3bf 100644 --- a/manifests/init.pp +++ b/manifests/init.pp @@ -22,13 +22,9 @@ class php { ensure => installed, } - # Not available on wheezy + # Not available anymore package { 'php5-suhosin': - ensure => $::lsbdistcodename ? { - 'wheezy' => absent, - 'jessie' => absent, - default => present, - }, + ensure => absent, } # Useful when upgrading from squeeze |