Puppet Class: roundcube::params

Inherited by:
roundcube
Defined in:
manifests/params.pp

Overview

Class: roundcube::params

Default configuration values for the ‘roundcube` class.

Copyright 2016 Martin Meinhold, unless otherwise noted.



9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
# File 'manifests/params.pp', line 9

class roundcube::params {
  $version = '1.6.0'
  $checksum = '2409ccdfe2e465f086cb9fc18c88dfe0aaf6ccc23924564975061209921694ba'  # complete edition
  $checksum_type = 'sha256'

  # deprecated: 'camptocamp' will be replaced with 'puppet' in the next major release
  $archive_provider = 'camptocamp'
  $package_dir = '/var/cache/puppet/archives'
  $install_dir = '/opt'

  $document_root_manage = true
  $document_root = '/var/www/roundcubemail'
  $process = 'www-data'

  $exec_paths = ['/usr/local/sbin', '/usr/local/bin', '/usr/sbin', '/usr/bin', '/sbin', '/bin']
  $composer_command_name = 'composer'
  $composer_disable_git_ssl_verify = false
  $composer_manage = true

  $plugins_manage = true
  $cronjobs_manage = true
}