Manage pg_ident.conf by default

This commit is contained in:
Hunter Haugen 2014-07-30 13:55:20 -07:00
parent 03a51599b1
commit f0da02cb7a
2 changed files with 2 additions and 3 deletions

View file

@ -477,7 +477,7 @@ This value defaults to `false`. Many distros ship with a fairly restrictive fire
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.
####`manage_pg_ident_conf`
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.
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.
###Class: postgresql::client

View file

@ -15,8 +15,7 @@ class postgresql::params inherits postgresql::globals {
$service_provider = $service_provider
$manage_firewall = $manage_firewall
$manage_pg_hba_conf = pick($manage_pg_hba_conf, true)
# 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)
$manage_pg_ident_conf = pick($manage_pg_ident_conf, false)
$manage_pg_ident_conf = pick($manage_pg_ident_conf, true)
$package_ensure = 'present'
# Amazon Linux's OS Family is 'Linux', operating system 'Amazon'.