summaryrefslogtreecommitdiff
path: root/manifests/web.pp
diff options
context:
space:
mode:
authorSilvio Rhatto <rhatto@riseup.net>2012-06-26 00:49:56 -0300
committerSilvio Rhatto <rhatto@riseup.net>2012-06-26 00:49:56 -0300
commit1bfa2d157f1bc896347c0ff30eebcb17a189f9d5 (patch)
treeb4626d7a8ca9f003b9bfac31c2246b561ab7d69c /manifests/web.pp
parentd4aa55fc9cbbe85f855c592d3cd4f1d4b81925bd (diff)
downloadpuppet-mail-1bfa2d157f1bc896347c0ff30eebcb17a189f9d5.tar.gz
puppet-mail-1bfa2d157f1bc896347c0ff30eebcb17a189f9d5.tar.bz2
Adding login_info roundcube plugin
Diffstat (limited to 'manifests/web.pp')
-rw-r--r--manifests/web.pp12
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 {