summaryrefslogtreecommitdiff
path: root/manifests/sympa.pp
diff options
context:
space:
mode:
authorSilvio Rhatto <rhatto@riseup.net>2010-08-24 20:48:57 -0300
committerSilvio Rhatto <rhatto@riseup.net>2010-08-24 20:48:57 -0300
commit569e2a1f7ffe1a74378af5ae5522859f5b2f867b (patch)
treee781b195947d4e75113f82cc5259413cc4d8ee3e /manifests/sympa.pp
parent4a8007ea2becb27b9ec2060f055c00bc8527ab30 (diff)
downloadpuppet-mail-569e2a1f7ffe1a74378af5ae5522859f5b2f867b.tar.gz
puppet-mail-569e2a1f7ffe1a74378af5ae5522859f5b2f867b.tar.bz2
More sympa config: suexec and fcgid
Diffstat (limited to 'manifests/sympa.pp')
-rw-r--r--manifests/sympa.pp14
1 files changed, 14 insertions, 0 deletions
diff --git a/manifests/sympa.pp b/manifests/sympa.pp
index 2ce336b..41b7e82 100644
--- a/manifests/sympa.pp
+++ b/manifests/sympa.pp
@@ -31,4 +31,18 @@ class mail::sympa {
content => template('mail/sympa/sympa.conf.erb'),
require => [ File['/etc/sympa'], User['sympa'] ],
}
+
+ package { [ 'apache2-suexec', 'libapache2-mod-fcgid' ]:
+ ensure => present,
+ }
+
+ apache::module { "fcgid":
+ ensure => present,
+ require => Package["fcgid"],
+ }
+
+ apache::module { "suexec":
+ ensure => present,
+ require => Package["apache2-suexec"],
+ }
}