diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2014-02-28 15:18:17 -0300 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2014-02-28 15:18:17 -0300 |
commit | 0e27204eaf243b5d4d3f49cc70d8023c3c43039f (patch) | |
tree | c67bb580aa1ef5cb6814a6b5fd198f0969ff702a | |
parent | 80ced85dcca37e724e6ebb508f343a8f7d6b24a7 (diff) | |
download | puppet-bootstrap-0e27204eaf243b5d4d3f49cc70d8023c3c43039f.tar.gz puppet-bootstrap-0e27204eaf243b5d4d3f49cc70d8023c3c43039f.tar.bz2 |
Coding style
-rw-r--r-- | README.md (renamed from README) | 0 | ||||
-rw-r--r-- | manifests/config.pp | 23 |
2 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" |