Merge pull request #141 from kamilszymanski/hba_rule_fix

fix pg_hba_rule for postgres local access
This commit is contained in:
Ken Barber 2013-03-01 05:45:57 -08:00
commit 490db27c3f

View file

@ -63,6 +63,7 @@ class postgresql::config::beforeservice(
# Lets setup the base rules
postgresql::pg_hba_rule { 'local access as postgres user':
type => 'local',
user => 'postgres',
auth_method => 'ident',
auth_option => $postgresql::params::version ? {
'8.1' => 'sameuser',