From 0afc276070bb6187e2667771097d91702a9f4d6c Mon Sep 17 00:00:00 2001 From: Drew Blessing Date: Wed, 14 Nov 2012 10:12:25 -0600 Subject: [PATCH] Adjust examples in tests to include new port params --- tests/puppetdb-postgres-distributed.pp | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/tests/puppetdb-postgres-distributed.pp b/tests/puppetdb-postgres-distributed.pp index 3a288af..9be52f4 100644 --- a/tests/puppetdb-postgres-distributed.pp +++ b/tests/puppetdb-postgres-distributed.pp @@ -11,8 +11,11 @@ node puppet { # This node is our postgres server node puppetdb-postgres { # Here we install and configure postgres and the puppetdb database instance + # Optionally, open the firewall port for postgres so puppetdb server can + # gain access. class { 'puppetdb::database::postgresql': - listen_addresses => 'puppetdb-postgres', + listen_addresses => 'puppetdb-postgres', + manage_redhat_firewall => true, } } @@ -20,7 +23,12 @@ node puppetdb-postgres { node puppetdb { # Here we install and configure the puppetdb server, and tell it where to # find the postgres database. + # Set open_ssl_listen_port to allow the puppet master to gain access to + # puppetdb. Optionally, set open_listen_port to open the HTTP port so + # you can access the PuppetDB dashboard. class { 'puppetdb::server': - database_host => 'puppetdb-postgres', + database_host => 'puppetdb-postgres', + open_ssl_listen_port => true, + open_listen_port => true, } }