diff options
| author | Silvio Rhatto <rhatto@riseup.net> | 2011-05-08 21:43:01 -0300 | 
|---|---|---|
| committer | Silvio Rhatto <rhatto@riseup.net> | 2011-05-08 21:43:01 -0300 | 
| commit | 990aa8cb13d5abbf3817d4fdd69f89d24f7283a6 (patch) | |
| tree | bc92420e38e0f548b4a377b086d140e53583f08a /manifests | |
| parent | 7a99081dee286f8786741e23541154a147b50abc (diff) | |
| download | puppet-mail-990aa8cb13d5abbf3817d4fdd69f89d24f7283a6.tar.gz puppet-mail-990aa8cb13d5abbf3817d4fdd69f89d24f7283a6.tar.bz2  | |
Adding roundcube configuration
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 {  | 
