diff options
| author | Silvio Rhatto <rhatto@riseup.net> | 2010-08-24 20:48:57 -0300 | 
|---|---|---|
| committer | Silvio Rhatto <rhatto@riseup.net> | 2010-08-24 20:48:57 -0300 | 
| commit | 569e2a1f7ffe1a74378af5ae5522859f5b2f867b (patch) | |
| tree | e781b195947d4e75113f82cc5259413cc4d8ee3e /manifests | |
| parent | 4a8007ea2becb27b9ec2060f055c00bc8527ab30 (diff) | |
| download | puppet-mail-569e2a1f7ffe1a74378af5ae5522859f5b2f867b.tar.gz puppet-mail-569e2a1f7ffe1a74378af5ae5522859f5b2f867b.tar.bz2 | |
More sympa config: suexec and fcgid
Diffstat (limited to 'manifests')
| -rw-r--r-- | manifests/sympa.pp | 14 | 
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"], +  }  } | 
