diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2018-04-12 12:29:24 -0300 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2018-04-12 12:29:24 -0300 |
commit | 19a3a2cda8682e8b00f8c8962461cd8b4fef10d5 (patch) | |
tree | c018047e563e9b39018597186fc316cb2a97fb3e /manifests/series5/packages/default.pp | |
parent | 43017883c2d5533b083bfc0386f3fc064e80a65d (diff) | |
download | puppet-php-19a3a2cda8682e8b00f8c8962461cd8b4fef10d5.tar.gz puppet-php-19a3a2cda8682e8b00f8c8962461cd8b4fef10d5.tar.bz2 |
Refactor and add php-fpm support
Diffstat (limited to 'manifests/series5/packages/default.pp')
-rw-r--r-- | manifests/series5/packages/default.pp | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/manifests/series5/packages/default.pp b/manifests/series5/packages/default.pp deleted file mode 100644 index 7dd51af..0000000 --- a/manifests/series5/packages/default.pp +++ /dev/null @@ -1,16 +0,0 @@ -class php::series5::packages::default { - # The needed packages: we could also try libapache2-mod-php5filter - package { [ 'php5', 'php5-mysql', 'php5-sqlite', 'php5-cli', 'php5-curl', 'php5-gmp', 'libapache2-mod-php5' ]: - ensure => installed, - } - - # Optional packages - package { [ "php5-gd", "php5-imagick" ]: - ensure => installed, - } - - # Not available anymore - package { 'php5-suhosin': - ensure => absent, - } -} |