1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
# File 'manifests/init.pp', line 1
class redmine (
$app_root = '/srv/redmine',
$redmine_sources = 'https://github.com/redmine/redmine.git',
$redmine_branch = '2.3-stable',
$redmine_user = 'deployment',
$db_adapter = 'mysql',
$db_name = 'redminedb',
$db_user = 'redminedbu',
$db_password = 'changeme',
$db_host = 'localhost',
$db_port = '3306',
$ldap_enabled = false,
$ldap_host = 'ldap.domain.com',
$ldap_base = 'dc=domain,dc=com',
$ldap_uid = 'uid',
$ldap_port = '636',
$ldap_method = 'ssl',
$ldap_bind_dn = '',
$ldap_bind_password = '',
$rvm_ruby = '',
) {
notify { 'This puppet module is deprecated. Please use velaluqa/redmine':
loglevel => 'err',
withpath => true,
}
}
|