diff options
Diffstat (limited to 'manifests')
| -rw-r--r-- | manifests/web.pp | 9 | 
1 files changed, 9 insertions, 0 deletions
| diff --git a/manifests/web.pp b/manifests/web.pp index 2b8cf9c..073bc6c 100644 --- a/manifests/web.pp +++ b/manifests/web.pp @@ -21,6 +21,15 @@ class mail::web::virtual inherits websites::setup {      content => template('mail/postfixadmin/config.inc.php.erb'),      require => File["${apache_sites_folder}/postfixadmin/site"],    } + +  file { "/etc/roundcube/main.inc.php": +    ensure  => present, +    owner   => root, +    group   => www-data, +    mode    => 0640, +    source => "puppet:///modules/mail/roundcube/main.inc.php", +    require => Package['roundcube'], +  }  }  class mail::web::sympa inherits websites::setup { | 
