diff options
author | Marc G. Fournier <scrappy@hub.org> | 1997-02-19 13:11:58 +0000 |
---|---|---|
committer | Marc G. Fournier <scrappy@hub.org> | 1997-02-19 13:11:58 +0000 |
commit | ebdd6aa78b22403ab940476b3abc358a056311fb (patch) | |
tree | 1d7a4322a21696a08ac41932f6980f0188305efc /src | |
parent | 23513b47b9eabc7671dc03669fde6829f9f2c2a1 (diff) | |
download | postgresql-ebdd6aa78b22403ab940476b3abc358a056311fb.tar.gz postgresql-ebdd6aa78b22403ab940476b3abc358a056311fb.zip |
And, make sure that initdb.sh copies the pg_geqo.sample file to
${DATADIR}. The file is left as pg_geqo.sample, since, unlike
pg_hba.conf, it isn't a required file...but this way ppl know that
its there, and that its where it is required, if they choose to
use it
Diffstat (limited to 'src')
-rw-r--r-- | src/bin/initdb/initdb.sh | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/bin/initdb/initdb.sh b/src/bin/initdb/initdb.sh index c23c40c8e48..a881e43dfd6 100644 --- a/src/bin/initdb/initdb.sh +++ b/src/bin/initdb/initdb.sh @@ -26,7 +26,7 @@ # # # IDENTIFICATION -# $Header: /cvsroot/pgsql/src/bin/initdb/Attic/initdb.sh,v 1.23 1997/01/14 03:07:15 momjian Exp $ +# $Header: /cvsroot/pgsql/src/bin/initdb/Attic/initdb.sh,v 1.24 1997/02/19 13:11:58 scrappy Exp $ # #------------------------------------------------------------------------- @@ -153,6 +153,7 @@ fi TEMPLATE=$PGLIB/local1_template1.bki.source GLOBAL=$PGLIB/global1.bki.source PG_HBA_SAMPLE=$PGLIB/pg_hba.conf.sample +PG_GEQO_SAMPLE=$PGLIB/pg_geqo.sample #------------------------------------------------------------------------- @@ -315,6 +316,7 @@ if [ $template_only -eq 0 ]; then pg_version $PGDATA cp $PG_HBA_SAMPLE $PGDATA/pg_hba.conf + cp $PG_GEQO_SAMPLE $PGDATA/pg_geqo.sample echo "Adding template1 database to pg_database..." |