Skip to content

Commit f0da02c

Browse files
committed
Manage pg_ident.conf by default
1 parent 03a5159 commit f0da02c

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -477,7 +477,7 @@ This value defaults to `false`. Many distros ship with a fairly restrictive fire
477477
This value defaults to `true`. Whether or not manage the pg_hba.conf. If set to `true`, puppet will overwrite this file. If set to `false`, puppet will not modify the file.
478478

479479
####`manage_pg_ident_conf`
480-
This value defaults to `false`. Whether or not manage the pg_ident.conf. If set to `true`, puppet will overwrite this file. If set to `false`, puppet will not modify the file.
480+
This value defaults to `true`. Whether or not manage the pg_ident.conf. If set to `true`, puppet will overwrite this file. If set to `false`, puppet will not modify the file.
481481

482482
###Class: postgresql::client
483483

manifests/params.pp

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,7 @@
1515
$service_provider = $service_provider
1616
$manage_firewall = $manage_firewall
1717
$manage_pg_hba_conf = pick($manage_pg_hba_conf, true)
18-
# TODO : the behavior of manage_pg_ident_conf should default to true in the next major relase, is now to false for backward compatibility (20140728)
19-
$manage_pg_ident_conf = pick($manage_pg_ident_conf, false)
18+
$manage_pg_ident_conf = pick($manage_pg_ident_conf, true)
2019
$package_ensure = 'present'
2120

2221
# Amazon Linux's OS Family is 'Linux', operating system 'Amazon'.

0 commit comments

Comments
 (0)