diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2012-06-26 00:49:56 -0300 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2012-06-26 00:49:56 -0300 |
commit | 1bfa2d157f1bc896347c0ff30eebcb17a189f9d5 (patch) | |
tree | b4626d7a8ca9f003b9bfac31c2246b561ab7d69c /manifests | |
parent | d4aa55fc9cbbe85f855c592d3cd4f1d4b81925bd (diff) | |
download | puppet-mail-1bfa2d157f1bc896347c0ff30eebcb17a189f9d5.tar.gz puppet-mail-1bfa2d157f1bc896347c0ff30eebcb17a189f9d5.tar.bz2 |
Adding login_info roundcube plugin
Diffstat (limited to 'manifests')
-rw-r--r-- | manifests/web.pp | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/manifests/web.pp b/manifests/web.pp index e66035e..64dd964 100644 --- a/manifests/web.pp +++ b/manifests/web.pp @@ -43,6 +43,18 @@ class mail::web::virtual inherits websites::setup { content => template('mail/roundcube/main.inc.php.erb'), require => Package['roundcube'], } + + file { "/var/lib/roundcube/plugins/login_info": + ensure => $lsbdistcodename ? { + 'lenny' => absent, + default => present, + }, + owner => root, + group => root, + mode => 0644, + source => "puppet:///modules/mail/roundcube/plugins/login_info", + require => Package['roundcube'], + } } class mail::web::sympa inherits websites::setup { |