Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit 357d9bd

Browse files
committed
Move export to a separate line, per Peter E.
1 parent 153f400 commit 357d9bd

File tree

2 files changed

+10
-9
lines changed

2 files changed

+10
-9
lines changed

src/backend/libpq/pg_hba.conf.sample

+7-7
Original file line numberDiff line numberDiff line change
@@ -124,15 +124,15 @@
124124
# usernames stored in secondary password files but not
125125
# secondary passwords.
126126
#
127-
# ident: Authentication is done by the ident server on the remote
128-
# host. AUTH_ARGUMENT is required and maps names found in
129-
# the $PGDATA/pg_ident.conf file. The connection is
130-
# accepted if the file contains an entry for this map
127+
# ident: Authentication is done by the ident server on the local
128+
# or remote host. AUTH_ARGUMENT is required and maps names
129+
# found in the $PGDATA/pg_ident.conf file. The connection
130+
# is accepted if the file contains an entry for this map
131131
# name with the ident-supplied username and the requested
132132
# PostgreSQL username. The special map name "sameuser"
133-
# indicates an implied map (not in pg_ident.conf)
134-
# that maps each ident username to the identical
135-
# PostgreSQL username.
133+
# indicates an implied map (not in pg_ident.conf) that
134+
# maps each ident username to the identical PostgreSQL
135+
# username.
136136
#
137137
# krb4: Kerberos V4 authentication is used.
138138
#

src/bin/pg_ctl/pg_ctl.sh

+3-2
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
#
99
#
1010
# IDENTIFICATION
11-
# $Header: /cvsroot/pgsql/src/bin/pg_ctl/Attic/pg_ctl.sh,v 1.22 2001/07/11 16:16:52 momjian Exp $
11+
# $Header: /cvsroot/pgsql/src/bin/pg_ctl/Attic/pg_ctl.sh,v 1.23 2001/07/11 19:36:41 momjian Exp $
1212
#
1313
#-------------------------------------------------------------------------
1414

@@ -128,7 +128,8 @@ do
128128
-D)
129129
shift
130130
# pass environment into new postmaster
131-
export PGDATA="$1"
131+
PGDATA="$1"
132+
export PGDATA
132133
;;
133134
-l)
134135
logfile="$2"

0 commit comments

Comments
 (0)