]> git.immae.eu Git - perso/Immae/Projets/Puppet.git/blame - modules/base_installation/manifests/params.pp
Add fstab module
[perso/Immae/Projets/Puppet.git] / modules / base_installation / manifests / params.pp
CommitLineData
7fed35a4
IB
1class base_installation::params {
2 $puppet_code_path = "/etc/puppetlabs/code"
54806111
IB
3 $puppet_conf_path = "/etc/puppetlabs/puppet"
4 $puppet_pass_seed = "/etc/puppetlabs/puppet/password_seed"
5 $puppet_ssl_path = "/etc/puppetlabs/ssl"
7fed35a4 6 $grub_device = "/dev/sda"
54806111
IB
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"
56bc60ea 13 $mounts = []
85abd2fd 14 $real_hostname = "example.com"
0b62a18b
IB
15 $system_hostname = "example.com"
16 $system_locales = ["en_US.UTF-8"]
17 $system_timezone = "UTC"
7fed35a4
IB
18 $system_users = [
19 {
20 userid => 1000,
0b62a18b
IB
21 username => "example",
22 groups => ["sudo"],
7fed35a4
IB
23 keys => [
24 {
0b62a18b
IB
25 host => "local.example.com",
26 key => "AAAAB3",
7fed35a4
IB
27 key_type => "ssh-rsa"
28 }
29 ]
30 }
31 ]
32}