aboutsummaryrefslogtreecommitdiff
path: root/manifests
diff options
context:
space:
mode:
authorSilvio Rhatto <rhatto@riseup.net>2014-02-28 15:18:17 -0300
committerSilvio Rhatto <rhatto@riseup.net>2014-02-28 15:18:17 -0300
commit0e27204eaf243b5d4d3f49cc70d8023c3c43039f (patch)
treec67bb580aa1ef5cb6814a6b5fd198f0969ff702a /manifests
parent80ced85dcca37e724e6ebb508f343a8f7d6b24a7 (diff)
downloadpuppet-bootstrap-0e27204eaf243b5d4d3f49cc70d8023c3c43039f.tar.gz
puppet-bootstrap-0e27204eaf243b5d4d3f49cc70d8023c3c43039f.tar.bz2
Coding style
Diffstat (limited to 'manifests')
-rw-r--r--manifests/config.pp23
1 files changed, 12 insertions, 11 deletions
diff --git a/manifests/config.pp b/manifests/config.pp
index 1d41879..ed8a3ac 100644
--- a/manifests/config.pp
+++ b/manifests/config.pp
@@ -1,19 +1,20 @@
-# use "mkpasswd -m sha-512" to generate root and first user's passwords
-$root_password = "rootpass"
-$first_user = "user"
+# 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"
+$first_user_sshkey = "usersshkey" # do not include "ssh-rsa " here.
+$first_user_email = "usermail"
-# bootstrap dirs
+# Bootstrap dirs
$puppet_bootstrap_tmpdir = "/var/tmp/puppet-bootstrap"
-$puppet_dir = "/usr/local/puppet"
+$puppet_dir = "/usr/local/puppet"
-# minimal config for puppet-nodo first run
+# 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]*'
+$global_munin_allow = '192.168.0.[0-9]*'
-# mysql configurations
-$mysql_rootpw = "mysqlpass"
+# MySQL configuration
+$mysql_rootpw = "mysqlpass"
$puppetmaster_db_password = "puppetpass"