summaryrefslogtreecommitdiff
path: root/manifests/sympa.pp
diff options
context:
space:
mode:
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"],
+ }
}