diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2010-08-08 13:43:27 -0300 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2010-08-08 13:43:27 -0300 |
commit | 41d01994d0a1ef58e95ef914d540587b17eb5976 (patch) | |
tree | e2c3fa1689c26616386bdf40b0dd2a7278072f2a | |
parent | e62ae70913050d0af611abeea0c8334827bd8a7d (diff) | |
download | puppet-php-41d01994d0a1ef58e95ef914d540587b17eb5976.tar.gz puppet-php-41d01994d0a1ef58e95ef914d540587b17eb5976.tar.bz2 |
Adding php::imap
-rw-r--r-- | manifests/init.pp | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/manifests/init.pp b/manifests/init.pp index 822d836..0a2a0af 100644 --- a/manifests/init.pp +++ b/manifests/init.pp @@ -20,7 +20,7 @@ class php { include pear # The needed packages - package { "php5": + package { [ "php5", "php5-mysql" ]: ensure => installed, } @@ -46,3 +46,9 @@ class php { notify => Service['apache2'], } } + +class php::imap inherits php { + package { "php5-imap": + ensure => installed, + } +} |