Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
P
postgres-lambda-diff
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Jakob Huber
postgres-lambda-diff
Commits
27266b70
Commit
27266b70
authored
May 30, 2000
by
Bruce Momjian
Browse files
Options
Downloads
Patches
Plain Diff
Copy pg_ident.conf.sample into /lib directory. Rename USERAUTH to
AUTHTYPE in config file. Patch both branches.
parent
4fd3e0dd
No related branches found
No related tags found
No related merge requests found
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/backend/Makefile
+5
-2
5 additions, 2 deletions
src/backend/Makefile
src/backend/libpq/pg_hba.conf.sample
+5
-5
5 additions, 5 deletions
src/backend/libpq/pg_hba.conf.sample
with
10 additions
and
7 deletions
src/backend/Makefile
+
5
−
2
View file @
27266b70
...
@@ -34,7 +34,7 @@
...
@@ -34,7 +34,7 @@
#
#
#
#
# IDENTIFICATION
# IDENTIFICATION
# $Header: /cvsroot/pgsql/src/backend/Makefile,v 1.47 2000/05/
11 17:46:28
momjian Exp $
# $Header: /cvsroot/pgsql/src/backend/Makefile,v 1.47
.2.1
2000/05/
30 16:36:34
momjian Exp $
#
#
#-------------------------------------------------------------------------
#-------------------------------------------------------------------------
...
@@ -188,7 +188,8 @@ endif
...
@@ -188,7 +188,8 @@ endif
install-templates
:
$(TEMPLATEDIR)
\
install-templates
:
$(TEMPLATEDIR)
\
global1.bki.source local1_template1.bki.source
\
global1.bki.source local1_template1.bki.source
\
global1.description local1_template1.description
\
global1.description local1_template1.description
\
libpq/pg_hba.conf.sample optimizer/geqo/pg_geqo.sample
\
libpq/pg_hba.conf.sample libpq/pg_ident.conf.sample
\
optimizer/geqo/pg_geqo.sample
\
pg_options.sample
pg_options.sample
$(
INSTALL
)
$(
INSTLOPTS
)
global1.bki.source
\
$(
INSTALL
)
$(
INSTLOPTS
)
global1.bki.source
\
$(
TEMPLATEDIR
)
/global1.bki.source
$(
TEMPLATEDIR
)
/global1.bki.source
...
@@ -200,6 +201,8 @@ install-templates: $(TEMPLATEDIR) \
...
@@ -200,6 +201,8 @@ install-templates: $(TEMPLATEDIR) \
$(
TEMPLATEDIR
)
/local1_template1.description
$(
TEMPLATEDIR
)
/local1_template1.description
$(
INSTALL
)
$(
INSTLOPTS
)
libpq/pg_hba.conf.sample
\
$(
INSTALL
)
$(
INSTLOPTS
)
libpq/pg_hba.conf.sample
\
$(
TEMPLATEDIR
)
/pg_hba.conf.sample
$(
TEMPLATEDIR
)
/pg_hba.conf.sample
$(
INSTALL
)
$(
INSTLOPTS
)
libpq/pg_ident.conf.sample
\
$(
TEMPLATEDIR
)
/pg_ident.conf.sample
$(
INSTALL
)
$(
INSTLOPTS
)
optimizer/geqo/pg_geqo.sample
\
$(
INSTALL
)
$(
INSTLOPTS
)
optimizer/geqo/pg_geqo.sample
\
$(
TEMPLATEDIR
)
/pg_geqo.sample
$(
TEMPLATEDIR
)
/pg_geqo.sample
$(
INSTALL
)
$(
INSTLOPTS
)
pg_options.sample
\
$(
INSTALL
)
$(
INSTLOPTS
)
pg_options.sample
\
...
...
...
...
This diff is collapsed.
Click to expand it.
src/backend/libpq/pg_hba.conf.sample
+
5
−
5
View file @
27266b70
...
@@ -37,7 +37,7 @@
...
@@ -37,7 +37,7 @@
#
#
# Format:
# Format:
#
#
# host DBNAME IP_ADDRESS ADDRESS_MASK
USER
AUTH [AUTH_ARGUMENT]
# host DBNAME IP_ADDRESS ADDRESS_MASK AUTH
TYPE
[AUTH_ARGUMENT]
#
#
# DBNAME is the name of a PostgreSQL database, "all" to indicate all
# DBNAME is the name of a PostgreSQL database, "all" to indicate all
# databases, or "sameuser" to restrict a user's access to a database
# databases, or "sameuser" to restrict a user's access to a database
...
@@ -47,7 +47,7 @@
...
@@ -47,7 +47,7 @@
# mask to identify a set of hosts. These hosts are allowed to connect to
# mask to identify a set of hosts. These hosts are allowed to connect to
# Database DBNAME.
# Database DBNAME.
#
#
#
USER
AUTH is a keyword indicating the method used to authenticate the
# AUTH
TYPE
is a keyword indicating the method used to authenticate the
# user, i.e. to determine that the principal is authorized to connect
# user, i.e. to determine that the principal is authorized to connect
# under the PostgreSQL username he supplies in his connection parameters.
# under the PostgreSQL username he supplies in his connection parameters.
#
#
...
@@ -99,18 +99,18 @@
...
@@ -99,18 +99,18 @@
#
#
# Format:
# Format:
#
#
# local DBNAME
USER
AUTH [AUTH_ARGUMENT]
# local DBNAME AUTH
TYPE
[AUTH_ARGUMENT]
#
#
# The format is the same as that of the "host" record type except that the
# The format is the same as that of the "host" record type except that the
# IP_ADDRESS and ADDRESS_MASK are omitted and the "ident", "krb4" and "krb5"
# IP_ADDRESS and ADDRESS_MASK are omitted and the "ident", "krb4" and "krb5"
# values of
USER
AUTH are not allowed.
# values of AUTH
TYPE
are not allowed.
# For backwards compatibility, PostgreSQL also accepts pre-version 6 records,
# For backwards compatibility, PostgreSQL also accepts pre-version 6 records,
# which look like:
# which look like:
#
#
# all 127.0.0.1 0.0.0.0
# all 127.0.0.1 0.0.0.0
# TYPE DATABASE IP_ADDRESS MASK
USER
AUTH MAP
# TYPE DATABASE IP_ADDRESS MASK AUTH
TYPE
MAP
#host all 127.0.0.1 255.255.255.255 trust
#host all 127.0.0.1 255.255.255.255 trust
...
...
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment