aboutsummaryrefslogtreecommitdiff
path: root/manifests/config.pp
blob: ed8a3ac30a694de77b52db81c80401556ae10c02 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# Use "mkpasswd -m sha-512" to generate root and first user's passwords
$root_password       = "rootpass"
$first_user          = "user"
$first_user_password = "userpass"
$first_user_sshkey   = "usersshkey" # do not include "ssh-rsa " here.
$first_user_email    = "usermail"

# Bootstrap dirs
$puppet_bootstrap_tmpdir = "/var/tmp/puppet-bootstrap"
$puppet_dir              = "/usr/local/puppet"

# Minimal config for puppet-nodo first run
Exec { path => "/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin" }

$resolvconf_nameservers = '201.6.2.152:201.6.2.32'
$global_munin_allow     = '192.168.0.[0-9]*'

# MySQL configuration
$mysql_rootpw             = "mysqlpass"
$puppetmaster_db_password = "puppetpass"