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
Copy file name to clipboardExpand all lines: CHANGELOG.md
+24-1Lines changed: 24 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -2,7 +2,26 @@
2
2
3
3
All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](http://semver.org).
- feat: enable different database resource name in extension [\#1136](https://github.com/puppetlabs/puppetlabs-postgresql/pull/1136) ([jfroche](https://github.com/jfroche))
13
+
- pdksync - \(FM-8581\) - Debian 10 added to travis and provision file refactored [\#1130](https://github.com/puppetlabs/puppetlabs-postgresql/pull/1130) ([david22swan](https://github.com/david22swan))
- Fix incorrectly quoted GRANT cmd on functions [\#1150](https://github.com/puppetlabs/puppetlabs-postgresql/pull/1150) ([olifre](https://github.com/olifre))
19
+
- Correct versioncmp logic in config.pp [\#1137](https://github.com/puppetlabs/puppetlabs-postgresql/pull/1137) ([boydtom](https://github.com/boydtom))
20
+
- Treat $version as an integer for comparison, defaults to string [\#1135](https://github.com/puppetlabs/puppetlabs-postgresql/pull/1135) ([boydtom](https://github.com/boydtom))
21
+
- Allow usage of PUBLIC role [\#1134](https://github.com/puppetlabs/puppetlabs-postgresql/pull/1134) ([Vampouille](https://github.com/Vampouille))
22
+
- fix missing systemd override config for EL8 \(CentOS and RHEL\)[\#1131](https://github.com/puppetlabs/puppetlabs-postgresql/pull/1131) ([david-barbion](https://github.com/david-barbion))
@@ -12,6 +31,10 @@ All notable changes to this project will be documented in this file. The format
12
31
-\(FM-8679\) - Support added for CentOS 8 [\#1117](https://github.com/puppetlabs/puppetlabs-postgresql/pull/1117) ([david22swan](https://github.com/david22swan))
13
32
- MODULES-10041 - allow define password\_encryption for version above 10 [\#1111](https://github.com/puppetlabs/puppetlabs-postgresql/pull/1111) ([k2patel](https://github.com/k2patel))
14
33
34
+
### Fixed
35
+
36
+
- Remove duplicate REFERENCE.md file with strange unicode character at end of filename [\#1108](https://github.com/puppetlabs/puppetlabs-postgresql/pull/1108) ([nudgegoonies](https://github.com/nudgegoonies))
Copy file name to clipboardExpand all lines: REFERENCE.md
+213-9Lines changed: 213 additions & 9 deletions
Original file line number
Diff line number
Diff line change
@@ -62,6 +62,9 @@ _Private Classes_
62
62
**Functions**
63
63
64
64
*[`postgresql::default`](#postgresqldefault): This function pull default values from the `params` class or `globals` class if the value is not present in `params`.
65
+
*[`postgresql::postgresql_acls_to_resources_hash`](#postgresqlpostgresql_acls_to_resources_hash): This internal function translates the ipv(4|6)acls format into a resource
66
+
*[`postgresql::postgresql_escape`](#postgresqlpostgresql_escape): This function safely escapes a string using a consistent random tag
67
+
*[`postgresql::postgresql_password`](#postgresqlpostgresql_password): This function returns the postgresql password hash from the clear text username / password
65
68
*[`postgresql_acls_to_resources_hash`](#postgresql_acls_to_resources_hash): This internal function translates the ipv(4|6)acls format into a resource suitable for create_resources. It is not intended to be used outsid
66
69
*[`postgresql_escape`](#postgresql_escape): This function safely escapes a string using a consistent random tag
67
70
*[`postgresql_password`](#postgresql_password): This function returns the postgresql password hash from the clear text username / password
@@ -493,6 +496,30 @@ Allow Puppet to manage the recovery.conf file.
493
496
494
497
Default value: `undef`
495
498
499
+
##### `manage_datadir`
500
+
501
+
Data type: `Any`
502
+
503
+
Set to false if you have file{ $datadir: } already defined
504
+
505
+
Default value: `undef`
506
+
507
+
##### `manage_logdir`
508
+
509
+
Data type: `Any`
510
+
511
+
Set to false if you have file{ $logdir: } already defined
512
+
513
+
Default value: `undef`
514
+
515
+
##### `manage_xlogdir`
516
+
517
+
Data type: `Any`
518
+
519
+
Set to false if you have file{ $xlogdir: } already defined
520
+
521
+
Default value: `undef`
522
+
496
523
##### `manage_package_repo`
497
524
498
525
Data type: `Any`
@@ -507,6 +534,14 @@ Data type: `Any`
507
534
508
535
Specifies working directory under which the psql command should be executed. May need to specify if '/tmp' is on volume mounted with noexec option.
509
536
537
+
Default value: `undef`
538
+
539
+
##### `manage_selinux`
540
+
541
+
Data type: `Any`
542
+
543
+
544
+
510
545
Default value: `undef`
511
546
512
547
### postgresql::lib::devel
@@ -974,14 +1009,6 @@ Set timezone for the PostgreSQL instance
974
1009
975
1010
Default value: $postgresql::params::timezone
976
1011
977
-
##### `password_encryption`
978
-
979
-
Data type: `Any`
980
-
981
-
Set Password Authentication when password-based authentication methods used
0 commit comments