include pear
# The needed packages
- package { [ "php5", "php5-mysql", "php5-cli", "php5-ffmpeg", "php5-curl", "php5-suhosin", "php5-gmp" ]:
+ package { [ "php5", "php5-mysql", "php5-cli", "php5-ffmpeg", "php5-curl", "php5-gmp" ]:
ensure => installed,
}
+ # Not available on wheezy
+ package { "php5-suhosin":
+ ensure => $lsbdistcodename ? {
+ 'wheezy' => absent,
+ default => present,
+ },
+ }
+
# The needed apache modules
apache::module { "php5":
ensure => present,