From: Marc G. Fournier Date: Sat, 21 Sep 1996 06:18:52 +0000 (+0000) Subject: Patches to make POSTPORT changes in scripts X-Git-Tag: PG95-1_08~15 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=df79870a825ed1da71a24c418fc05e3d54b4d6aa;p=postgresql Patches to make POSTPORT changes in scripts Originally submitted by: ernst.molitor@uni-bonn.de resubmitted by: D'Arcy Cain --- diff --git a/src/Makefile.global b/src/Makefile.global index d3827f6b6a..b62a50ac94 100644 --- a/src/Makefile.global +++ b/src/Makefile.global @@ -7,7 +7,7 @@ # # # IDENTIFICATION -# $Header: /cvsroot/pgsql/src/Attic/Makefile.global,v 1.19.2.5 1996/08/20 04:06:12 scrappy Exp $ +# $Header: /cvsroot/pgsql/src/Attic/Makefile.global,v 1.19.2.6 1996/09/21 06:16:09 scrappy Exp $ # # NOTES # This is seen by any Makefiles that include mk/postgres.mk. To @@ -105,6 +105,9 @@ POSTDOCDIR= $(POSTGRESDIR)/doc # Where the header files necessary to build frontend programs get installed. HEADERDIR= $(POSTGRESDIR)/include +# The port to run the postmaster on +POSTPORT= 6543 + # NAMEDATALEN is the max length for system identifiers (e.g. table names, # attribute names, function names, etc.) # diff --git a/src/bin/createdb/createdb.sh b/src/bin/createdb/createdb.sh index db41e1d027..4ef7b71ed3 100644 --- a/src/bin/createdb/createdb.sh +++ b/src/bin/createdb/createdb.sh @@ -11,7 +11,7 @@ # # # IDENTIFICATION -# $Header: /cvsroot/pgsql/src/bin/createdb/Attic/createdb.sh,v 1.3 1996/07/27 02:19:00 scrappy Exp $ +# $Header: /cvsroot/pgsql/src/bin/createdb/Attic/createdb.sh,v 1.3.2.1 1996/09/21 06:16:32 scrappy Exp $ # #------------------------------------------------------------------------- @@ -23,7 +23,7 @@ # PGDATA, PGHOST, and PGPORT # # ---------------- -[ -z "$PGPORT" ] && PGPORT=5432 +[ -z "$PGPORT" ] && PGPORT=_fUnKy_POSTPORT_sTuFf_ [ -z "$PGHOST" ] && PGHOST=localhost BINDIR=_fUnKy_BINDIR_sTuFf_ PATH=$BINDIR:$PATH diff --git a/src/bin/createuser/createuser.sh b/src/bin/createuser/createuser.sh index 56dfb53ed4..d21b62e5dc 100644 --- a/src/bin/createuser/createuser.sh +++ b/src/bin/createuser/createuser.sh @@ -8,7 +8,7 @@ # # # IDENTIFICATION -# $Header: /cvsroot/pgsql/src/bin/createuser/Attic/createuser.sh,v 1.3 1996/07/27 02:19:06 scrappy Exp $ +# $Header: /cvsroot/pgsql/src/bin/createuser/Attic/createuser.sh,v 1.3.2.1 1996/09/21 06:16:39 scrappy Exp $ # # Note - this should NOT be setuid. # @@ -22,7 +22,7 @@ # PGDATA, PGHOST, and PGPORT # # ---------------- -[ -z "$PGPORT" ] && PGPORT=5432 +[ -z "$PGPORT" ] && PGPORT=_fUnKy_POSTPORT_sTuFf_ [ -z "$PGHOST" ] && PGHOST=localhost BINDIR=_fUnKy_BINDIR_sTuFf_ PATH=$BINDIR:$PATH diff --git a/src/bin/destroydb/destroydb.sh b/src/bin/destroydb/destroydb.sh index 5c06977981..d1bb293fe0 100644 --- a/src/bin/destroydb/destroydb.sh +++ b/src/bin/destroydb/destroydb.sh @@ -11,7 +11,7 @@ # # # IDENTIFICATION -# $Header: /cvsroot/pgsql/src/bin/destroydb/Attic/destroydb.sh,v 1.3 1996/07/27 02:19:12 scrappy Exp $ +# $Header: /cvsroot/pgsql/src/bin/destroydb/Attic/destroydb.sh,v 1.3.2.1 1996/09/21 06:18:33 scrappy Exp $ # #------------------------------------------------------------------------- @@ -23,7 +23,7 @@ # PGDATA, PGHOST, and PGPORT # # ---------------- -[ -z "$PGPORT" ] && PGPORT=5432 +[ -z "$PGPORT" ] && PGPORT=_fUnKy_POSTPORT_sTuFf_ [ -z "$PGHOST" ] && PGHOST=localhost BINDIR=_fUnKy_BINDIR_sTuFf_ PATH=$BINDIR:$PATH diff --git a/src/bin/destroyuser/destroyuser.sh b/src/bin/destroyuser/destroyuser.sh index 4e361cb216..1b637573a1 100644 --- a/src/bin/destroyuser/destroyuser.sh +++ b/src/bin/destroyuser/destroyuser.sh @@ -8,7 +8,7 @@ # # # IDENTIFICATION -# $Header: /cvsroot/pgsql/src/bin/destroyuser/Attic/destroyuser.sh,v 1.3 1996/07/27 02:19:18 scrappy Exp $ +# $Header: /cvsroot/pgsql/src/bin/destroyuser/Attic/destroyuser.sh,v 1.3.2.1 1996/09/21 06:18:40 scrappy Exp $ # # Note - this should NOT be setuid. # @@ -22,7 +22,7 @@ # PGDATA, PGHOST, and PGPORT # # ---------------- -[ -z "$PGPORT" ] && PGPORT=5432 +[ -z "$PGPORT" ] && PGPORT=_fUnKy_POSTPORT_sTuFf_ [ -z "$PGHOST" ] && PGHOST=localhost BINDIR=_fUnKy_BINDIR_sTuFf_ PATH=$BINDIR:$PATH diff --git a/src/bin/initdb/initdb.sh b/src/bin/initdb/initdb.sh index dfdcc60862..2e8e4551cb 100644 --- a/src/bin/initdb/initdb.sh +++ b/src/bin/initdb/initdb.sh @@ -12,7 +12,7 @@ # # # IDENTIFICATION -# $Header: /cvsroot/pgsql/src/bin/initdb/Attic/initdb.sh,v 1.4 1996/07/23 03:03:19 scrappy Exp $ +# $Header: /cvsroot/pgsql/src/bin/initdb/Attic/initdb.sh,v 1.4.2.1 1996/09/21 06:18:52 scrappy Exp $ # #------------------------------------------------------------------------- @@ -25,7 +25,7 @@ # # ---------------- [ -z "$PGDATA" ] && { PGDATA=_fUnKy_DATADIR_sTuFf_; export PGDATA; } -[ -z "$PGPORT" ] && { PGPORT=5432; export PGPORT; } +[ -z "$PGPORT" ] && { PGPORT=_fUnKy_POSTPORT_sTuFf_; export PGPORT; } [ -z "$PGHOST" ] && { PGHOST=localhost; export PGHOST; } POSTGRESDIR=_fUnKy_POSTGRESDIR_sTuFf_ BINDIR=_fUnKy_BINDIR_sTuFf_