diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2014-03-05 10:39:29 -0300 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2014-03-05 10:39:29 -0300 |
commit | 4b6fb966e5c18af51456707930233c401d84929b (patch) | |
tree | 9e4e2c794e0e0413192c7abbb827d6394676362a | |
parent | 17d8a37238ea649a1c72b578c7350e51596b65f3 (diff) | |
download | puppet-bootstrap-4b6fb966e5c18af51456707930233c401d84929b.tar.gz puppet-bootstrap-4b6fb966e5c18af51456707930233c401d84929b.tar.bz2 |
Using sqlite3 intially for storeconfigs
-rw-r--r-- | templates/puppet/puppet.conf.erb | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/templates/puppet/puppet.conf.erb b/templates/puppet/puppet.conf.erb index d2b50d3..e2751ca 100644 --- a/templates/puppet/puppet.conf.erb +++ b/templates/puppet/puppet.conf.erb @@ -11,10 +11,11 @@ templatedir = $vardir/templates masterport = 8140 autosign = false storeconfigs = true -dbadapter = mysql -dbserver = localhost -dbuser = puppet -dbpassword = <%= db_password %> +dbadapter = sqlite3 +#dbadapter = mysql +#dbserver = localhost +#dbuser = puppet +#dbpassword = <%= db_password %> dbconnections = 15 certname = puppet.<%= base_domain %> ssl_client_header = SSL_CLIENT_S_DN |