8fbda3c4d6
This commit does the following: * Use the new inifile module to manage puppet.conf * More comprehensive management of config files * Validate database connectivity before applying puppetdb config changes * Validate puppetdb connectivity before applying puppet master config changes * Documentation
11 lines
367 B
Puppet
11 lines
367 B
Puppet
# This is an example of how to get puppetdb up and running on the same node
|
|
# where your puppet master is running, using the embedded database (which is
|
|
# mostly just for testing or very small-scale deployments).
|
|
|
|
# Configure puppetdb.
|
|
class { 'puppetdb':
|
|
database => 'embedded',
|
|
}
|
|
|
|
# Configure the puppet master to use puppetdb.
|
|
include puppetdb::master::config
|