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:
Chris Price 2012-10-01 10:46:33 -07:00
parent 850e039500
commit b5df5d9197
6 changed files with 5 additions and 8 deletions

View file

@ -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,

View file

@ -20,7 +20,7 @@
# }
#
#
# TODO: port this to use params
# TODO: finish porting this to use params
#
class puppetdb::master::puppetdb_conf(
$server = 'localhost',

View file

@ -19,8 +19,6 @@
# }
#
#
# TODO: port this to use params
#
class puppetdb::master::routes(
$puppet_confdir = $puppetdb::params::puppet_confdir,
) {

View file

@ -18,8 +18,6 @@
# }
#
#
# TODO: port this to use params
#
class puppetdb::master::storeconfigs(
$puppet_conf = $puppetdb::params::puppet_conf
) {

View file

@ -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'

View file

@ -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',