From: Silvio Rhatto Date: Tue, 24 Aug 2010 23:48:57 +0000 (-0300) Subject: More sympa config: suexec and fcgid X-Git-Url: https://gitweb.fluxo.info/?a=commitdiff_plain;h=569e2a1f7ffe1a74378af5ae5522859f5b2f867b;p=puppet-mail.git More sympa config: suexec and fcgid --- 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"], + } }