Created
April 29, 2013 12:17
-
-
Save raphink/5481262 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
local all all ident sameuser | |
local all toto md5 | |
local all titi md5 b a="3" c="o=4,v=6" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
pg_hba { 'Test entry': | |
method => 'ident', | |
options => { | |
'sameuser' => undef | |
}, | |
target => '/tmp/pg_hba.conf', | |
} | |
pg_hba { 'Test entry 2': | |
user => 'toto', | |
method => 'md5', | |
target => '/tmp/pg_hba.conf', | |
} | |
pg_hba { 'Test entry 3': | |
user => 'titi', | |
method => 'md5', | |
options => { | |
'a' => '3', | |
'b' => undef, | |
'c' => 'o=4,v=6', | |
}, | |
target => '/tmp/pg_hba.conf', | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment