diff options
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 { |