diff options
author | Tatsuo Ishii <ishii@postgresql.org> | 1999-12-22 04:23:31 +0000 |
---|---|---|
committer | Tatsuo Ishii <ishii@postgresql.org> | 1999-12-22 04:23:31 +0000 |
commit | e3736d2c3ac6dc563e785defffa9e0dd66f7e853 (patch) | |
tree | 3170bf3c146b34156573eeb0382393888f5b1d53 /src | |
parent | b680d5bec7eefe0cee86ed3e9a813f0162d12b47 (diff) | |
download | postgresql-e3736d2c3ac6dc563e785defffa9e0dd66f7e853.tar.gz postgresql-e3736d2c3ac6dc563e785defffa9e0dd66f7e853.zip |
Add installtion of postmaster.opts.default.
Diffstat (limited to 'src')
-rw-r--r-- | src/bin/initdb/initdb.sh | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/bin/initdb/initdb.sh b/src/bin/initdb/initdb.sh index fd47fd1fdde..f3f76cf40f6 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.76 1999/12/20 05:39:40 momjian Exp $ +# $Header: /cvsroot/pgsql/src/bin/initdb/Attic/initdb.sh,v 1.77 1999/12/22 04:23:31 ishii Exp $ # #------------------------------------------------------------------------- @@ -321,6 +321,7 @@ PG_HBA_SAMPLE="$PGLIB"/pg_hba.conf.sample TEMPLATE_DESCR="$PGLIB"/local1_template1.description GLOBAL_DESCR="$PGLIB"/global1.description PG_GEQO_SAMPLE="$PGLIB"/pg_geqo.sample +PG_POSTMASTER_OPTS_DEFAULT_SAMPLE="$PGLIB"/postmaster.opts.default.sample for PREREQ_FILE in "$TEMPLATE" "$GLOBAL" "$PG_HBA_SAMPLE" do @@ -433,6 +434,7 @@ then cp "$PG_HBA_SAMPLE" "$PGDATA"/pg_hba.conf || exit_nicely cp "$PG_GEQO_SAMPLE" "$PGDATA"/pg_geqo.sample || exit_nicely + cp "$PG_POSTMASTER_OPTS_DEFAULT_SAMPLE" "$PGDATA"/postmaster.opts.default || exit_nicely echo "Adding template1 database to pg_database" @@ -556,6 +558,8 @@ echo "VACUUM ANALYZE" \ echo echo "$CMDNAME completed successfully. You can now start the database server." echo "($PGPATH/postmaster -D $PGDATA)" +echo "or" +echo "($PGPATH/pg_ctl -D $PGDATA start)" echo exit 0 |