diff options
author | Olivier Thauvin <nanardon@mageia.org> | 2011-05-21 08:19:13 +0000 |
---|---|---|
committer | Olivier Thauvin <nanardon@mageia.org> | 2011-05-21 08:19:13 +0000 |
commit | 01d0d93146370e7226d5da7e6dd6caccffae0121 (patch) | |
tree | d2149ea2256bb1270853c07d157361e24e254499 /modules/postgresql/templates | |
parent | b32a4ec3b15732e6446809f758ece0f0902a16a7 (diff) | |
download | puppet-01d0d93146370e7226d5da7e6dd6caccffae0121.tar puppet-01d0d93146370e7226d5da7e6dd6caccffae0121.tar.gz puppet-01d0d93146370e7226d5da7e6dd6caccffae0121.tar.bz2 puppet-01d0d93146370e7226d5da7e6dd6caccffae0121.tar.xz puppet-01d0d93146370e7226d5da7e6dd6caccffae0121.zip |
- don't use pam anymore since no system users exists
Diffstat (limited to 'modules/postgresql/templates')
-rw-r--r-- | modules/postgresql/templates/pg_hba.conf | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/modules/postgresql/templates/pg_hba.conf b/modules/postgresql/templates/pg_hba.conf index 8280584f..91012a30 100644 --- a/modules/postgresql/templates/pg_hba.conf +++ b/modules/postgresql/templates/pg_hba.conf @@ -123,9 +123,9 @@ hostssl youri_check youri 2a02:2178:2:7::2/128 md5 # "local" is for Unix domain socket connections only local all all ident map=local # IPv4 local connections: -host all all 127.0.0.1/32 pam +host all all 127.0.0.1/32 md5 # IPv6 local connections: -host all all ::1/128 pam +host all all ::1/128 md5 -hostssl all all 0.0.0.0/0 pam -hostssl all all ::0/0 pam +hostssl all all 0.0.0.0/0 md5 +hostssl all all ::0/0 md5 |