diff options
Diffstat (limited to 'src/bin')
-rw-r--r-- | src/bin/initdb/initdb.sh | 8 | ||||
-rw-r--r-- | src/bin/pg_ctl/Makefile | 3 | ||||
-rw-r--r-- | src/bin/pg_ctl/postmaster.opts.default.sample | 1 |
3 files changed, 5 insertions, 7 deletions
diff --git a/src/bin/initdb/initdb.sh b/src/bin/initdb/initdb.sh index 8b8521f4333..c7834c72d62 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.92 2000/05/31 00:28:35 petere Exp $ +# $Header: /cvsroot/pgsql/src/bin/initdb/Attic/initdb.sh,v 1.93 2000/06/04 01:44:35 petere Exp $ # #------------------------------------------------------------------------- @@ -318,10 +318,10 @@ fi TEMPLATE="$PGLIB"/local1_template1.bki.source GLOBAL="$PGLIB"/global1.bki.source PG_HBA_SAMPLE="$PGLIB"/pg_hba.conf.sample +POSTGRESQL_CONF_SAMPLE="$PGLIB"/postgresql.conf.sample TEMPLATE_DESCR="$PGLIB"/local1_template1.description GLOBAL_DESCR="$PGLIB"/global1.description -PG_POSTMASTER_OPTS_DEFAULT_SAMPLE="$PGLIB"/postmaster.opts.default.sample if [ "$show_setting" -eq 1 ] then @@ -339,9 +339,9 @@ then echo " TEMPLATE: $TEMPLATE" echo " GLOBAL: $GLOBAL" echo " PG_HBA_SAMPLE: $PG_HBA_SAMPLE" + echo " POSTGRESQL_CONF_SAMPLE: $POSTGRESQL_CONF_SAMPLE" echo " TEMPLATE_DESCR: $TEMPLATE_DESCR" echo " GLOBAL_DESCR: $GLOBAL_DESCR" - echo " PG_POSTMASTER_OPTS_DEFAULT_SAMPLE: $PG_POSTMASTER_OPTS_DEFAULT_SAMPLE" echo exit 0 fi @@ -459,7 +459,7 @@ then "$PGPATH"/pg_version "$PGDATA" || exit_nicely cp "$PG_HBA_SAMPLE" "$PGDATA"/pg_hba.conf || exit_nicely - cp "$PG_POSTMASTER_OPTS_DEFAULT_SAMPLE" "$PGDATA"/postmaster.opts.default || exit_nicely + cp "$POSTGRESQL_CONF_SAMPLE" "$PGDATA"/postgresql.conf || exit_nicely echo "Adding template1 database to pg_database" diff --git a/src/bin/pg_ctl/Makefile b/src/bin/pg_ctl/Makefile index c9315a16145..a0095749aa9 100644 --- a/src/bin/pg_ctl/Makefile +++ b/src/bin/pg_ctl/Makefile @@ -7,7 +7,7 @@ # # # IDENTIFICATION -# $Header: /cvsroot/pgsql/src/bin/pg_ctl/Makefile,v 1.4 2000/03/08 01:58:18 momjian Exp $ +# $Header: /cvsroot/pgsql/src/bin/pg_ctl/Makefile,v 1.5 2000/06/04 01:44:36 petere Exp $ # #------------------------------------------------------------------------- @@ -21,7 +21,6 @@ pg_ctl: pg_ctl.sh install: pg_ctl $(INSTALL) $(INSTL_EXE_OPTS) $+ $(BINDIR) - $(INSTALL) $(INSTLOPTS) postmaster.opts.default.sample $(TEMPLATEDIR) clean: rm -f pg_ctl diff --git a/src/bin/pg_ctl/postmaster.opts.default.sample b/src/bin/pg_ctl/postmaster.opts.default.sample deleted file mode 100644 index 8b137891791..00000000000 --- a/src/bin/pg_ctl/postmaster.opts.default.sample +++ /dev/null @@ -1 +0,0 @@ - |