aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSilvio Rhatto <rhatto@riseup.net>2010-08-08 13:43:27 -0300
committerSilvio Rhatto <rhatto@riseup.net>2010-08-08 13:43:27 -0300
commit41d01994d0a1ef58e95ef914d540587b17eb5976 (patch)
treee2c3fa1689c26616386bdf40b0dd2a7278072f2a
parente62ae70913050d0af611abeea0c8334827bd8a7d (diff)
downloadpuppet-php-41d01994d0a1ef58e95ef914d540587b17eb5976.tar.gz
puppet-php-41d01994d0a1ef58e95ef914d540587b17eb5976.tar.bz2
Adding php::imap
-rw-r--r--manifests/init.pp8
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,
+ }
+}