forked from codeurjc/scstack
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdefault.pp
More file actions
34 lines (32 loc) · 1.12 KB
/
default.pp
File metadata and controls
34 lines (32 loc) · 1.12 KB
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
27
28
29
30
31
32
33
34
# Uncomment this if you have apt-cacher:
#file { "/etc/apt/apt.conf.d/01proxy":
# content => 'Acquire::http::Proxy "http://192.168.33.1:3142/apt-cacher";',
#}
# Ensure apt-update has been run:
exec { "apt-update":
command => "/usr/bin/apt-get update",
}
class { "scstack":
# Superadmin password. Will be used to access the SidelabCode Stack Console
sadminpass => "sadmin",
# Or whatever IP specified in Vagrantfile
ip => "127.0.0.1",
# Uncomment this if you are using vagrant and wish to have a guest-host virtual network
# Note that this requires to modify the Vagrantfile accordingly
#ip => "192.168.33.10",
domain => "code.example.org",
# Note that your baseDN must match EXACTLY with your domain
baseDN => "dc=code,dc=example,dc=org",
passBindDN => "changeme",
# MySQL info
mysqlpass => "changeme",
redminedb => "redminedb",
redminedbpass => "changeme",
archivadbpass => "changeme",
gerritdbpass => "changeme",
gerritAdminPass => "changeme",
# Your company/organization name
compname => "SidelabCode Stack version 0.4",
# A name to be displayed within Redmine
codename => "SCStack ALM Tools",
}