(PDB-5052) Install PostgreSQL 11 for PDB > 7.0.0#333
Conversation
puppetdb::params is a classthat may have no external impact to Forge modules. This module is declared in 33 of 577 indexed public
|
| $postgres_version = '9.6' | ||
|
|
||
| if $puppetdb_version in ['latest','present'] or versioncmp($puppetdb_version, '7.0.0') >= 0 { | ||
| $postgres_version = '11.12' |
There was a problem hiding this comment.
Between postgres 9.6 and postgres 10 they changed their versioning semantics. Before the third number indicated a minor release, whereas now incrementing the second number is a minor release. I think we can just use 11 here to ensure that we pick up the latest minor releases of postgres as they are release.
More details of their versioning policy can be found here https://www.postgresql.org/support/versioning/
Missed this doc update with puppetlabs#333.
No description provided.