diff options
author | Bryan Henderson | 1996-10-12 07:49:56 +0000 |
---|---|---|
committer | Bryan Henderson | 1996-10-12 07:49:56 +0000 |
commit | 369848857eceb6083a01ee1dac892e2bf64237ee (patch) | |
tree | caa375b1b0a3bff428fd50c90db58fb584428c11 | |
parent | 785234d6ca7d98cc3c5708765a6d6fded5b5df00 (diff) |
New host-based authentication -- set up pg_hba.conf instead of pg_hba
-rw-r--r-- | src/bin/initdb/initdb.sh | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/bin/initdb/initdb.sh b/src/bin/initdb/initdb.sh index 99fca45bbdb..b986d2e2918 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.11 1996/10/05 21:34:33 momjian Exp $ +# $Header: /cvsroot/pgsql/src/bin/initdb/Attic/initdb.sh,v 1.12 1996/10/12 07:49:56 bryanh Exp $ # #------------------------------------------------------------------------- @@ -111,7 +111,7 @@ fi TEMPLATE=$LIBDIR/local1_template1.bki.source GLOBAL=$LIBDIR/global1.bki.source -PG_HBA_SAMPLE=$LIBDIR/pg_hba.sample +PG_HBA_SAMPLE=$LIBDIR/pg_hba.conf.sample #------------------------------------------------------------------------- # Find the input files @@ -264,7 +264,7 @@ if [ $template_only -eq 0 ]; then pg_version $PGDATA - cp $PG_HBA_SAMPLE $PGDATA/pg_hba + cp $PG_HBA_SAMPLE $PGDATA/pg_hba.conf echo "Adding template1 database to pg_database..." |