File tree Expand file tree Collapse file tree 6 files changed +14
-11
lines changed Expand file tree Collapse file tree 6 files changed +14
-11
lines changed Original file line number Diff line number Diff line change 7
7
#
8
8
#
9
9
# IDENTIFICATION
10
- # $Header: /cvsroot/pgsql/src/Attic/Makefile.global,v 1.19.2.5 1996/08/20 04: 06:12 scrappy Exp $
10
+ # $Header: /cvsroot/pgsql/src/Attic/Makefile.global,v 1.19.2.6 1996/09/21 06:16:09 scrappy Exp $
11
11
#
12
12
# NOTES
13
13
# This is seen by any Makefiles that include mk/postgres.mk. To
@@ -105,6 +105,9 @@ POSTDOCDIR= $(POSTGRESDIR)/doc
105
105
# Where the header files necessary to build frontend programs get installed.
106
106
HEADERDIR= $(POSTGRESDIR)/include
107
107
108
+ # The port to run the postmaster on
109
+ POSTPORT= 6543
110
+
108
111
# NAMEDATALEN is the max length for system identifiers (e.g. table names,
109
112
# attribute names, function names, etc.)
110
113
#
Original file line number Diff line number Diff line change 11
11
#
12
12
#
13
13
# IDENTIFICATION
14
- # $Header: /cvsroot/pgsql/src/bin/createdb/Attic/createdb.sh,v 1.3 1996/07/27 02:19:00 scrappy Exp $
14
+ # $Header: /cvsroot/pgsql/src/bin/createdb/Attic/createdb.sh,v 1.3.2.1 1996/09/21 06:16:32 scrappy Exp $
15
15
#
16
16
# -------------------------------------------------------------------------
17
17
23
23
# PGDATA, PGHOST, and PGPORT
24
24
#
25
25
# ----------------
26
- [ -z " $PGPORT " ] && PGPORT=5432
26
+ [ -z " $PGPORT " ] && PGPORT=_fUnKy_POSTPORT_sTuFf_
27
27
[ -z " $PGHOST " ] && PGHOST=localhost
28
28
BINDIR=_fUnKy_BINDIR_sTuFf_
29
29
PATH=$BINDIR :$PATH
Original file line number Diff line number Diff line change 8
8
#
9
9
#
10
10
# IDENTIFICATION
11
- # $Header: /cvsroot/pgsql/src/bin/createuser/Attic/createuser.sh,v 1.3 1996/07/27 02:19:06 scrappy Exp $
11
+ # $Header: /cvsroot/pgsql/src/bin/createuser/Attic/createuser.sh,v 1.3.2.1 1996/09/21 06:16:39 scrappy Exp $
12
12
#
13
13
# Note - this should NOT be setuid.
14
14
#
22
22
# PGDATA, PGHOST, and PGPORT
23
23
#
24
24
# ----------------
25
- [ -z " $PGPORT " ] && PGPORT=5432
25
+ [ -z " $PGPORT " ] && PGPORT=_fUnKy_POSTPORT_sTuFf_
26
26
[ -z " $PGHOST " ] && PGHOST=localhost
27
27
BINDIR=_fUnKy_BINDIR_sTuFf_
28
28
PATH=$BINDIR :$PATH
Original file line number Diff line number Diff line change 11
11
#
12
12
#
13
13
# IDENTIFICATION
14
- # $Header: /cvsroot/pgsql/src/bin/destroydb/Attic/destroydb.sh,v 1.3 1996/07/27 02:19:12 scrappy Exp $
14
+ # $Header: /cvsroot/pgsql/src/bin/destroydb/Attic/destroydb.sh,v 1.3.2.1 1996/09/21 06:18:33 scrappy Exp $
15
15
#
16
16
# -------------------------------------------------------------------------
17
17
23
23
# PGDATA, PGHOST, and PGPORT
24
24
#
25
25
# ----------------
26
- [ -z " $PGPORT " ] && PGPORT=5432
26
+ [ -z " $PGPORT " ] && PGPORT=_fUnKy_POSTPORT_sTuFf_
27
27
[ -z " $PGHOST " ] && PGHOST=localhost
28
28
BINDIR=_fUnKy_BINDIR_sTuFf_
29
29
PATH=$BINDIR :$PATH
Original file line number Diff line number Diff line change 8
8
#
9
9
#
10
10
# IDENTIFICATION
11
- # $Header: /cvsroot/pgsql/src/bin/destroyuser/Attic/destroyuser.sh,v 1.3 1996/07/27 02:19:18 scrappy Exp $
11
+ # $Header: /cvsroot/pgsql/src/bin/destroyuser/Attic/destroyuser.sh,v 1.3.2.1 1996/09/21 06:18:40 scrappy Exp $
12
12
#
13
13
# Note - this should NOT be setuid.
14
14
#
22
22
# PGDATA, PGHOST, and PGPORT
23
23
#
24
24
# ----------------
25
- [ -z " $PGPORT " ] && PGPORT=5432
25
+ [ -z " $PGPORT " ] && PGPORT=_fUnKy_POSTPORT_sTuFf_
26
26
[ -z " $PGHOST " ] && PGHOST=localhost
27
27
BINDIR=_fUnKy_BINDIR_sTuFf_
28
28
PATH=$BINDIR :$PATH
Original file line number Diff line number Diff line change 12
12
#
13
13
#
14
14
# IDENTIFICATION
15
- # $Header: /cvsroot/pgsql/src/bin/initdb/Attic/initdb.sh,v 1.4 1996/07/23 03:03:19 scrappy Exp $
15
+ # $Header: /cvsroot/pgsql/src/bin/initdb/Attic/initdb.sh,v 1.4.2.1 1996/09/21 06:18:52 scrappy Exp $
16
16
#
17
17
# -------------------------------------------------------------------------
18
18
25
25
#
26
26
# ----------------
27
27
[ -z " $PGDATA " ] && { PGDATA=_fUnKy_DATADIR_sTuFf_; export PGDATA; }
28
- [ -z " $PGPORT " ] && { PGPORT=5432 ; export PGPORT; }
28
+ [ -z " $PGPORT " ] && { PGPORT=_fUnKy_POSTPORT_sTuFf_ ; export PGPORT; }
29
29
[ -z " $PGHOST " ] && { PGHOST=localhost; export PGHOST; }
30
30
POSTGRESDIR=_fUnKy_POSTGRESDIR_sTuFf_
31
31
BINDIR=_fUnKy_BINDIR_sTuFf_
You can’t perform that action at this time.
0 commit comments