diff --git a/manifests/init.pp b/manifests/init.pp index 3e4c28f8..3da52bdf 100644 --- a/manifests/init.pp +++ b/manifests/init.pp @@ -29,6 +29,7 @@ $puppetdb_service = $puppetdb::params::puppetdb_service, $puppetdb_service_status = $puppetdb::params::puppetdb_service_status, $read_database = $puppetdb::params::read_database, + $read_database_host = $puppetdb::params::read_database_host, $read_database_port = $puppetdb::params::read_database_port, $read_database_username = $puppetdb::params::read_database_username, $read_database_password = $puppetdb::params::read_database_password, @@ -108,17 +109,17 @@ confdir => $confdir, java_args => $java_args, max_threads => $max_threads, - read_database => $puppetdb::params::read_database, - read_database_host => $puppetdb::params::read_database_host, - read_database_port => $puppetdb::params::read_database_port, - read_database_username => $puppetdb::params::read_database_username, - read_database_password => $puppetdb::params::read_database_password, - read_database_name => $puppetdb::params::read_database_name, - read_database_ssl => $puppetdb::params::read_database_ssl, - read_log_slow_statements => $puppetdb::params::read_log_slow_statements, - read_conn_max_age => $puppetdb::params::read_conn_max_age, - read_conn_keep_alive => $puppetdb::params::read_conn_keep_alive, - read_conn_lifetime => $puppetdb::params::read_conn_lifetime, + read_database => $read_database, + read_database_host => $read_database_host, + read_database_port => $read_database_port, + read_database_username => $read_database_username, + read_database_password => $read_database_password, + read_database_name => $read_database_name, + read_database_ssl => $read_database_ssl, + read_log_slow_statements => $read_log_slow_statements, + read_conn_max_age => $read_conn_max_age, + read_conn_keep_alive => $read_conn_keep_alive, + read_conn_lifetime => $read_conn_lifetime, } if ($database == 'postgres') {