aboutsummaryrefslogtreecommitdiff
path: root/modules/base_installation/manifests/params.pp
diff options
context:
space:
mode:
authorIsmaël Bouya <ismael.bouya@normalesup.org>2017-08-30 22:16:39 +0200
committerIsmaël Bouya <ismael.bouya@normalesup.org>2017-08-31 22:59:53 +0200
commit548061112d2e2627317f9379d2f501fcf3f6ea54 (patch)
tree19fb949ad1fb965b4705897650809b4ffb6e9f29 /modules/base_installation/manifests/params.pp
parent1508e956adaa97b7a82c27537f4b124266dacdf0 (diff)
downloadPuppet-548061112d2e2627317f9379d2f501fcf3f6ea54.tar.gz
Puppet-548061112d2e2627317f9379d2f501fcf3f6ea54.tar.zst
Puppet-548061112d2e2627317f9379d2f501fcf3f6ea54.zip
Add LDAP support
Diffstat (limited to 'modules/base_installation/manifests/params.pp')
-rw-r--r--modules/base_installation/manifests/params.pp9
1 files changed, 9 insertions, 0 deletions
diff --git a/modules/base_installation/manifests/params.pp b/modules/base_installation/manifests/params.pp
index f09f01a..c03eb1e 100644
--- a/modules/base_installation/manifests/params.pp
+++ b/modules/base_installation/manifests/params.pp
@@ -1,6 +1,15 @@
1class base_installation::params { 1class base_installation::params {
2 $puppet_code_path = "/etc/puppetlabs/code" 2 $puppet_code_path = "/etc/puppetlabs/code"
3 $puppet_conf_path = "/etc/puppetlabs/puppet"
4 $puppet_pass_seed = "/etc/puppetlabs/puppet/password_seed"
5 $puppet_ssl_path = "/etc/puppetlabs/ssl"
3 $grub_device = "/dev/sda" 6 $grub_device = "/dev/sda"
7 $ldap_base = "dc=example,dc=com"
8 $ldap_cn = "node"
9 $ldap_dn = "cn=node,ou=hosts,dc=example,dc=com"
10 $ldap_cert_path = "/etc/ssl/certs/ca-certificates.crt"
11 $ldap_uri = "ldaps://ldap.example.com"
12 $ldap_server = "ldap.example.com"
4 $system_hostname = "example.com" 13 $system_hostname = "example.com"
5 $system_locales = ["en_US.UTF-8"] 14 $system_locales = ["en_US.UTF-8"]
6 $system_timezone = "UTC" 15 $system_timezone = "UTC"