You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# @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
37
#
@@ -47,7 +47,6 @@
47
47
# @param log_line_prefix Overrides the default PostgreSQL log prefix.
48
48
#
49
49
# @param user Overrides the default PostgreSQL super user and owner of PostgreSQL related files in the file system.
50
-
# Default value: 'postgres'.
51
50
# @param group Overrides the default postgres user group to be used for related files in the file system.
52
51
#
53
52
# @param version The version of PostgreSQL to install and manage.
@@ -68,9 +67,9 @@
68
67
#
69
68
# @param timezone Sets the default timezone of the postgresql server. The postgresql built-in default is taking the systems timezone information.
70
69
#
71
-
# @param manage_pg_hba_conf
72
-
# @param manage_pg_ident_conf
73
-
# @param manage_recovery_conf
70
+
# @param manage_pg_hba_conf Allow Puppet to manage the pg_hba.conf file.
71
+
# @param manage_pg_ident_conf Allow Puppet to manage the pg_ident.conf file.
72
+
# @param manage_recovery_conf Allow Puppet to manage the recovery.conf file.
74
73
#
75
74
# @param manage_package_repo Sets up official PostgreSQL repositories on your host if set to true.
76
75
# @param module_workdir Specifies working directory under which the psql command should be executed. May need to specify if '/tmp' is on volume mounted with noexec option.
Copy file name to clipboardExpand all lines: manifests/server/extension.pp
+1-2Lines changed: 1 addition & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -13,8 +13,7 @@
13
13
# @param ensure Specifies whether to activate or deactivate the extension. Valid options: 'present' or 'absent'.
14
14
# @param package_name Specifies a package to install prior to activating the extension.
15
15
# @param package_ensure Overrides default package deletion behavior. By default, the package specified with package_name is installed when the extension is activated and removed when the extension is deactivated. To override this behavior, set the ensure value for the package.
16
-
# @param connect_settings
17
-
#
16
+
# @param connect_settings Specifies a hash of environment variables used when connecting to a remote server.
0 commit comments