diff options
-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, + } +} |