diff options
author | Peter Eisentraut <peter_e@gmx.net> | 2010-01-26 06:45:31 +0000 |
---|---|---|
committer | Peter Eisentraut <peter_e@gmx.net> | 2010-01-26 06:45:31 +0000 |
commit | fd7673bc4eb06e647d8e11b603ff5482ca58d4f1 (patch) | |
tree | b9d2a711344bcc56646a23bf0e439d3c47bd158f /src | |
parent | aed1a0121ae68bdacf737b0bae7fb75f48644f21 (diff) | |
download | postgresql-fd7673bc4eb06e647d8e11b603ff5482ca58d4f1.tar.gz postgresql-fd7673bc4eb06e647d8e11b603ff5482ca58d4f1.zip |
Make the default pg_hba.conf and pg_ident.conf align at 8-character boundaries
to make it easier to use with tabs.
Diffstat (limited to 'src')
-rw-r--r-- | src/backend/libpq/pg_hba.conf.sample | 8 | ||||
-rw-r--r-- | src/backend/libpq/pg_ident.conf.sample | 2 |
2 files changed, 5 insertions, 5 deletions
diff --git a/src/backend/libpq/pg_hba.conf.sample b/src/backend/libpq/pg_hba.conf.sample index 54b369d5f22..7d327ac6a69 100644 --- a/src/backend/libpq/pg_hba.conf.sample +++ b/src/backend/libpq/pg_hba.conf.sample @@ -67,11 +67,11 @@ @authcomment@ -# TYPE DATABASE USER CIDR-ADDRESS METHOD +# TYPE DATABASE USER CIDR-ADDRESS METHOD @remove-line-for-nolocal@# "local" is for Unix domain socket connections only -@remove-line-for-nolocal@local all all @authmethod@ +@remove-line-for-nolocal@local all all @authmethod@ # IPv4 local connections: -host all all 127.0.0.1/32 @authmethod@ +host all all 127.0.0.1/32 @authmethod@ # IPv6 local connections: -host all all ::1/128 @authmethod@ +host all all ::1/128 @authmethod@ diff --git a/src/backend/libpq/pg_ident.conf.sample b/src/backend/libpq/pg_ident.conf.sample index 16ef76a2502..c5298d7760a 100644 --- a/src/backend/libpq/pg_ident.conf.sample +++ b/src/backend/libpq/pg_ident.conf.sample @@ -37,4 +37,4 @@ # Put your actual configuration here # ---------------------------------- -# MAPNAME SYSTEM-USERNAME PG-USERNAME +# MAPNAME SYSTEM-USERNAME PG-USERNAME |