diff options
author | Bruce Momjian <bruce@momjian.us> | 2002-11-25 21:42:11 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 2002-11-25 21:42:11 +0000 |
commit | f5d7da3041b296862b32a15ab5b183ecd9b7a1b5 (patch) | |
tree | acaf0d2d49b49ff16e16c0e253aa6d33a5059704 | |
parent | 027a39726fb731f52b186517b5e1af07b959526d (diff) | |
download | postgresql-f5d7da3041b296862b32a15ab5b183ecd9b7a1b5.tar.gz postgresql-f5d7da3041b296862b32a15ab5b183ecd9b7a1b5.zip |
Remove check for pg_group file as part of initdb -W password assignment
--- not needed.
-rw-r--r-- | src/bin/initdb/initdb.sh | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/src/bin/initdb/initdb.sh b/src/bin/initdb/initdb.sh index e02c498acb1..1420f0b901b 100644 --- a/src/bin/initdb/initdb.sh +++ b/src/bin/initdb/initdb.sh @@ -27,7 +27,7 @@ # Portions Copyright (c) 1996-2002, PostgreSQL Global Development Group # Portions Copyright (c) 1994, Regents of the University of California # -# $Header: /cvsroot/pgsql/src/bin/initdb/Attic/initdb.sh,v 1.176 2002/10/18 22:05:35 petere Exp $ +# $Header: /cvsroot/pgsql/src/bin/initdb/Attic/initdb.sh,v 1.176.2.1 2002/11/25 21:42:11 momjian Exp $ # #------------------------------------------------------------------------- @@ -669,11 +669,6 @@ EOF echo "The password file wasn't generated. Please report this problem." 1>&2 exit_nicely fi - if [ ! -f "$PGDATA"/global/pg_group ]; then - echo - echo "The group file wasn't generated. Please report this problem." 1>&2 - exit_nicely - fi echo "ok" fi |