Showing with 5 additions and 1 deletion.
  1. +4 −0 CHANGELOG.md
  2. +1 −1 manifests/init.pp
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## Z Release 0.11.1

- Correct logic for detecting PostgreSQL version

## Minor Release 0.11.0

- Prepare for PostgreSQL 9.6 in PE 2017.3.0
Expand Down
2 changes: 1 addition & 1 deletion manifests/init.pp
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
Boolean $manage_postgresql_settings = true,
) {

if ( versioncmp('2017.3.0', $facts['pe_server_version']) >= 0 ) {
if ( versioncmp('2017.3.0', $facts['pe_server_version']) <= 0 ) {
$psql_version = '9.6'
} else {
$psql_version = '9.4'
Expand Down