Update comments and docs w/rt PE params
This is just a small add-on to Hunter's commits where he added extra parameters to support PE. This commit just cleans up some of my old comments that were made irrelevant or inaccurate due to the work that he did, and adds a bit of documentation to the new test manifest that he created.
This commit is contained in:
parent
850e039500
commit
b5df5d9197
6 changed files with 5 additions and 8 deletions
|
@ -40,7 +40,7 @@
|
|||
# puppetdb_port => 8081,
|
||||
# }
|
||||
#
|
||||
# TODO: port this to use params
|
||||
# TODO: finish porting this to use params
|
||||
#
|
||||
class puppetdb::master::config(
|
||||
$puppetdb_server = $::clientcert,
|
||||
|
|
|
@ -20,7 +20,7 @@
|
|||
# }
|
||||
#
|
||||
#
|
||||
# TODO: port this to use params
|
||||
# TODO: finish porting this to use params
|
||||
#
|
||||
class puppetdb::master::puppetdb_conf(
|
||||
$server = 'localhost',
|
||||
|
|
|
@ -19,8 +19,6 @@
|
|||
# }
|
||||
#
|
||||
#
|
||||
# TODO: port this to use params
|
||||
#
|
||||
class puppetdb::master::routes(
|
||||
$puppet_confdir = $puppetdb::params::puppet_confdir,
|
||||
) {
|
||||
|
|
|
@ -18,8 +18,6 @@
|
|||
# }
|
||||
#
|
||||
#
|
||||
# TODO: port this to use params
|
||||
#
|
||||
class puppetdb::master::storeconfigs(
|
||||
$puppet_conf = $puppetdb::params::puppet_conf
|
||||
) {
|
||||
|
|
|
@ -11,8 +11,6 @@
|
|||
# Sample Usage:
|
||||
#
|
||||
class puppetdb::params {
|
||||
# TODO: need to condition this based on whether we are a PE install or not
|
||||
|
||||
$ssl_listen_address = $::clientcert
|
||||
$ssl_listen_port = '8081'
|
||||
|
||||
|
|
|
@ -1,3 +1,6 @@
|
|||
# This manifest shows an example of how you might set up puppetdb to work with
|
||||
# Puppet Enterprise, as opposed to puppet open source.
|
||||
|
||||
class pe_puppetdb {
|
||||
class { 'puppetdb':
|
||||
puppetdb_package => 'pe-puppetdb',
|
||||
|
|
Loading…
Reference in a new issue