Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
P
Postgres FD Implementation
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Abuhujair Javed
Postgres FD Implementation
Commits
2f52eee2
Commit
2f52eee2
authored
May 30, 2000
by
Bruce Momjian
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Copy pg_ident.conf.sample into /lib directory. Rename USERAUTH to
AUTHTYPE in config file. Patch both branches.
parent
aea9b6e2
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
7 deletions
+10
-7
src/backend/Makefile
src/backend/Makefile
+5
-2
src/backend/libpq/pg_hba.conf.sample
src/backend/libpq/pg_hba.conf.sample
+5
-5
No files found.
src/backend/Makefile
View file @
2f52eee2
...
...
@@ -34,7 +34,7 @@
#
#
# IDENTIFICATION
# $Header: /cvsroot/pgsql/src/backend/Makefile,v 1.5
0 2000/05/29 20:51:35 tgl
Exp $
# $Header: /cvsroot/pgsql/src/backend/Makefile,v 1.5
1 2000/05/30 16:36:14 momjian
Exp $
#
#-------------------------------------------------------------------------
...
...
@@ -205,7 +205,8 @@ endif
install-templates
:
$(TEMPLATEDIR)
\
global1.bki.source local1_template1.bki.source
\
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
$(INSTALL)
$(INSTLOPTS)
global1.bki.source
\
$(TEMPLATEDIR)
/global1.bki.source
...
...
@@ -217,6 +218,8 @@ install-templates: $(TEMPLATEDIR) \
$(TEMPLATEDIR)
/local1_template1.description
$(INSTALL)
$(INSTLOPTS)
libpq/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
\
$(TEMPLATEDIR)
/pg_geqo.sample
$(INSTALL)
$(INSTLOPTS)
pg_options.sample
\
...
...
src/backend/libpq/pg_hba.conf.sample
View file @
2f52eee2
...
...
@@ -37,7 +37,7 @@
#
# Format:
#
# host DBNAME IP_ADDRESS ADDRESS_MASK
USERAUTH
[AUTH_ARGUMENT]
# host DBNAME IP_ADDRESS ADDRESS_MASK
AUTHTYPE
[AUTH_ARGUMENT]
#
# DBNAME is the name of a PostgreSQL database, "all" to indicate all
# databases, or "sameuser" to restrict a user's access to a database
...
...
@@ -47,7 +47,7 @@
# mask to identify a set of hosts. These hosts are allowed to connect to
# Database DBNAME.
#
#
USERAUTH
is a keyword indicating the method used to authenticate the
#
AUTHTYPE
is a keyword indicating the method used to authenticate the
# user, i.e. to determine that the principal is authorized to connect
# under the PostgreSQL username he supplies in his connection parameters.
#
...
...
@@ -99,18 +99,18 @@
#
# Format:
#
# local DBNAME
USERAUTH
[AUTH_ARGUMENT]
# local DBNAME
AUTHTYPE
[AUTH_ARGUMENT]
#
# 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"
# values of
USERAUTH
are not allowed.
# values of
AUTHTYPE
are not allowed.
# For backwards compatibility, PostgreSQL also accepts pre-version 6 records,
# which look like:
#
# all 127.0.0.1 0.0.0.0
# TYPE DATABASE IP_ADDRESS MASK
USERAUTH
MAP
# TYPE DATABASE IP_ADDRESS MASK
AUTHTYPE
MAP
#host all 127.0.0.1 255.255.255.255 trust
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment