|
28 | 28 | # ['ssl_listen_port'] - The port on which the puppetdb web server should |
29 | 29 | # accept HTTPS requests (defaults to 8081). |
30 | 30 | # ['open_ssl_listen_port'] - If true, open the ssl listen port on the firewall. |
31 | | -# (defaults to false). |
| 31 | +# (defaults to true). |
32 | 32 | # ['database'] - Which database backend to use; legal values are |
33 | 33 | # `postgres` (default) or `embedded`. (The `embedded` |
34 | 34 | # db can be used for very small installations or for |
35 | 35 | # testing, but is not recommended for use in production |
36 | 36 | # environments. For more info, see the puppetdb docs.) |
37 | | -# ['database_host'] - The hostname or IP address of the database server. |
38 | | -# (defaults to `localhost`; ignored for `embedded` db) |
39 | 37 | # ['database_port'] - The port that the database server listens on. |
40 | 38 | # (defaults to `5432`; ignored for `embedded` db) |
41 | 39 | # ['database_username'] - The name of the database user to connect as. |
|
50 | 48 | # number, 'present', or 'latest'. (defaults to |
51 | 49 | # 'present') |
52 | 50 | # ['puppetdb_service'] - The name of the puppetdb service. |
53 | | -# ['postgres_listen_addresses'] - The addresses for postgres to listen on. |
54 | | -# (defaults to 'localhost'. '*' = all) |
55 | | -# ['open_postgres_port'] - If true, open the postgres listen port on the firewall. |
56 | | -# (defaults to false). |
57 | 51 | # ['manage_redhat_firewall'] - DEPRECATED: Use open_ssl_listen_port instead. |
58 | 52 | # boolean indicating whether or not the module |
59 | 53 | # should open a port in the firewall on redhat-based |
|
83 | 77 | $ssl_listen_port = $puppetdb::params::ssl_listen_port, |
84 | 78 | $open_ssl_listen_port = $puppetdb::params::open_ssl_listen_port, |
85 | 79 | $database = $puppetdb::params::database, |
86 | | - $database_host = $puppetdb::params::database_host, |
87 | 80 | $database_port = $puppetdb::params::database_port, |
88 | 81 | $database_username = $puppetdb::params::database_username, |
89 | 82 | $database_password = $puppetdb::params::database_password, |
90 | 83 | $database_name = $puppetdb::params::database_name, |
91 | 84 | $puppetdb_package = $puppetdb::params::puppetdb_package, |
92 | 85 | $puppetdb_version = $puppetdb::params::puppetdb_version, |
93 | 86 | $puppetdb_service = $puppetdb::params::puppetdb_service, |
94 | | - $postgres_listen_addresses = $puppetdb::params::postgres_listen_addresses, |
95 | 87 | $open_postgres_port = $puppetdb::params::open_postgres_port, |
96 | 88 | $manage_redhat_firewall = $puppetdb::params::manage_redhat_firewall, |
97 | 89 | $confdir = $puppetdb::params::confdir |
|
109 | 101 | ssl_listen_port => $ssl_listen_port, |
110 | 102 | open_ssl_listen_port => $open_ssl_listen_port, |
111 | 103 | database => $database, |
112 | | - database_host => $database_host, |
113 | 104 | database_port => $database_port, |
114 | 105 | database_username => $database_username, |
115 | 106 | database_password => $database_password, |
|
0 commit comments