14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
# File 'manifests/front.pp', line 14
class taiga::front (
String[1] $back_hostname,
Enum['http', 'https'] $back_protocol,
Boolean $events = false,
String[1] $user = 'nobody',
Enum['present', 'latest'] $repo_ensure = 'present',
String[1] $repo_revision = 'stable',
Stdlib::Absolutepath $install_dir = '/srv/www/taiga-front',
String[2, 2] $default_language = 'en',
Boolean $public_register_enabled = true,
Boolean $ldap_enable = false,
Boolean $gravatar = true,
) {
include taiga::front::repo
include taiga::front::config
Class['Taiga::Front::Repo']
-> Class['Taiga::Front::Config']
}
|