File tree 2 files changed +10
-7
lines changed
2 files changed +10
-7
lines changed Original file line number Diff line number Diff line change 34
34
#
35
35
#
36
36
# IDENTIFICATION
37
- # $Header: /cvsroot/pgsql/src/backend/Makefile,v 1.50 2000/05/29 20:51:35 tgl Exp $
37
+ # $Header: /cvsroot/pgsql/src/backend/Makefile,v 1.51 2000/05/30 16:36:14 momjian Exp $
38
38
#
39
39
# -------------------------------------------------------------------------
40
40
@@ -205,7 +205,8 @@ endif
205
205
install-templates : $(TEMPLATEDIR ) \
206
206
global1.bki.source local1_template1.bki.source \
207
207
global1.description local1_template1.description \
208
- libpq/pg_hba.conf.sample optimizer/geqo/pg_geqo.sample \
208
+ libpq/pg_hba.conf.sample libpq/pg_ident.conf.sample \
209
+ optimizer/geqo/pg_geqo.sample \
209
210
pg_options.sample
210
211
$(INSTALL) $(INSTLOPTS) global1.bki.source \
211
212
$(TEMPLATEDIR)/global1.bki.source
@@ -217,6 +218,8 @@ install-templates: $(TEMPLATEDIR) \
217
218
$(TEMPLATEDIR)/local1_template1.description
218
219
$(INSTALL) $(INSTLOPTS) libpq/pg_hba.conf.sample \
219
220
$(TEMPLATEDIR)/pg_hba.conf.sample
221
+ $(INSTALL) $(INSTLOPTS) libpq/pg_ident.conf.sample \
222
+ $(TEMPLATEDIR)/pg_ident.conf.sample
220
223
$(INSTALL) $(INSTLOPTS) optimizer/geqo/pg_geqo.sample \
221
224
$(TEMPLATEDIR)/pg_geqo.sample
222
225
$(INSTALL) $(INSTLOPTS) pg_options.sample \
Original file line number Diff line number Diff line change 37
37
#
38
38
# Format:
39
39
#
40
- # host DBNAME IP_ADDRESS ADDRESS_MASK USERAUTH [AUTH_ARGUMENT]
40
+ # host DBNAME IP_ADDRESS ADDRESS_MASK AUTHTYPE [AUTH_ARGUMENT]
41
41
#
42
42
# DBNAME is the name of a PostgreSQL database, "all" to indicate all
43
43
# databases, or "sameuser" to restrict a user's access to a database
47
47
# mask to identify a set of hosts. These hosts are allowed to connect to
48
48
# Database DBNAME.
49
49
#
50
- # USERAUTH is a keyword indicating the method used to authenticate the
50
+ # AUTHTYPE is a keyword indicating the method used to authenticate the
51
51
# user, i.e. to determine that the principal is authorized to connect
52
52
# under the PostgreSQL username he supplies in his connection parameters.
53
53
#
99
99
#
100
100
# Format:
101
101
#
102
- # local DBNAME USERAUTH [AUTH_ARGUMENT]
102
+ # local DBNAME AUTHTYPE [AUTH_ARGUMENT]
103
103
#
104
104
# The format is the same as that of the "host" record type except that the
105
105
# IP_ADDRESS and ADDRESS_MASK are omitted and the "ident", "krb4" and "krb5"
106
- # values of USERAUTH are not allowed.
106
+ # values of AUTHTYPE are not allowed.
107
107
108
108
# For backwards compatibility, PostgreSQL also accepts pre-version 6 records,
109
109
# which look like:
110
110
#
111
111
# all 127.0.0.1 0.0.0.0
112
112
113
- # TYPE DATABASE IP_ADDRESS MASK USERAUTH MAP
113
+ # TYPE DATABASE IP_ADDRESS MASK AUTHTYPE MAP
114
114
115
115
#host all 127.0.0.1 255.255.255.255 trust
116
116
You can’t perform that action at this time.
0 commit comments