|
33 | 33 | # @param recovery_conf_path Path to your recovery.conf file.
|
34 | 34 | # @param default_connect_settings Default connection settings.
|
35 | 35 | #
|
36 |
| -# @param pg_hba_conf_defaults Disables the defaults supplied with the module for pg_hba.conf if set to false. This is useful if you want to override the defaults. Be sure that your changes align with the rest of the module, as some access is required to perform some operations, such as basic psql operations. |
37 |
| -# |
38 |
| -# @param datadir Overrides the default PostgreSQL data directory for the target platform. |
39 |
| -# |
40 |
| -# @note Changing the datadir after installation causes the server to come to a full stop before making the change. For Red Hat systems, the data directory must be labeled appropriately for SELinux. On Ubuntu, you must explicitly set needs_initdb = true to allow Puppet to initialize the database in the new datadir (needs_initdb defaults to true on other systems). |
41 |
| -# @note Warning! If datadir is changed from the default, Puppet does not manage purging of the original data directory, which causes it to fail if the data directory is changed back to the original |
| 36 | +# @param pg_hba_conf_defaults Disables the defaults supplied with the module for pg_hba.conf if set to false. |
| 37 | +# |
| 38 | +# @param datadir |
| 39 | +# Overrides the default PostgreSQL data directory for the target platform. |
| 40 | +# Changing the datadir after installation causes the server to come to a full stop before making the change. |
| 41 | +# For Red Hat systems, the data directory must be labeled appropriately for SELinux. |
| 42 | +# On Ubuntu, you must explicitly set needs_initdb = true to allow Puppet to initialize the database in the new datadir (needs_initdb defaults to true on other systems). |
| 43 | +# Warning! If datadir is changed from the default, Puppet does not manage purging of the original data directory, which causes it to fail if the data directory is changed back to the original |
42 | 44 | #
|
43 | 45 | # @param confdir Overrides the default PostgreSQL configuration directory for the target platform.
|
44 | 46 | # @param bindir Overrides the default PostgreSQL binaries directory for the target platform.
|
|
51 | 53 | #
|
52 | 54 | # @param version The version of PostgreSQL to install and manage.
|
53 | 55 | # @param postgis_version Defines the version of PostGIS to install, if you install PostGIS.
|
54 |
| -# @param repo_proxy Sets the proxy option for the official PostgreSQL yum-repositories only. This is useful if your server is behind a corporate firewall and needs to use proxy servers for outside connectivity. |
55 |
| -# Debian is currently not supported. |
| 56 | +# @param repo_proxy Sets the proxy option for the official PostgreSQL yum-repositories only. |
56 | 57 | #
|
57 | 58 | # @param repo_baseurl Sets the baseurl for the PostgreSQL repository. Useful if you host your own mirror of the repository.
|
58 | 59 | #
|
59 | 60 | # @param needs_initdb Explicitly calls the initdb operation after the server package is installed and before the PostgreSQL service is started.
|
60 | 61 | #
|
61 |
| -# @param encoding Sets the default encoding for all databases created with this module. On certain operating systems, this is also used during the template1 initialization, so it becomes a default outside of the module as well. |
62 |
| -# @param locale Sets the default database locale for all databases created with this module. On certain operating systems, this is also used during the template1 initialization, so it becomes a default outside of the module as well. |
63 |
| -# @note On Debian, you'll need to ensure that the 'locales-all' package is installed for full functionality of PostgreSQL. |
| 62 | +# @param encoding |
| 63 | +# Sets the default encoding for all databases created with this module. |
| 64 | +# On certain operating systems, this is also used during the template1 initialization, so it becomes a default outside of the module as well. |
| 65 | +# @param locale |
| 66 | +# Sets the default database locale for all databases created with this module. |
| 67 | +# On certain operating systems, this is also used during the template1 initialization, so it becomes a default outside of the module as well. |
| 68 | +# On Debian, you'll need to ensure that the 'locales-all' package is installed for full functionality of PostgreSQL. |
64 | 69 | # @param data_checksums
|
65 |
| -# Boolean. Use checksums on data pages to help detect corruption by the I/O system that would otherwise be silent. |
66 |
| -# Warning: This option is used during initialization by initdb, and cannot be changed later. If set, checksums are calculated for all objects, in all databases. |
| 70 | +# Use checksums on data pages to help detect corruption by the I/O system that would otherwise be silent. |
| 71 | +# Warning: This option is used during initialization by initdb, and cannot be changed later. |
67 | 72 | #
|
68 | 73 | # @param timezone Sets the default timezone of the postgresql server. The postgresql built-in default is taking the systems timezone information.
|
69 | 74 | #
|
|
0 commit comments