diff options
| author | Bruce Momjian | 1998-08-19 23:48:23 +0000 |
|---|---|---|
| committer | Bruce Momjian | 1998-08-19 23:48:23 +0000 |
| commit | 09e125084af207a76bd456d13ced9f7a15caeb83 (patch) | |
| tree | 01bb287595bf0c4897cf48cec70c5bf8fe2e8cf9 /src/bin/initdb | |
| parent | a4d3695f28a805d4a575da53285a5b0cc6b73714 (diff) | |
Fix for vacuum introduced today.
Diffstat (limited to 'src/bin/initdb')
| -rw-r--r-- | src/bin/initdb/initdb.sh | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/bin/initdb/initdb.sh b/src/bin/initdb/initdb.sh index f59c00d5eb2..f7a6536126c 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.47 1998/08/19 19:59:45 momjian Exp $ +# $Header: /cvsroot/pgsql/src/bin/initdb/Attic/initdb.sh,v 1.48 1998/08/19 23:48:23 momjian Exp $ # #------------------------------------------------------------------------- @@ -219,10 +219,10 @@ for PREREQ_FILE in $TEMPLATE $GLOBAL $PG_HBA_SAMPLE; do fi done -echo "$CMDNAME: using $TEMPLATE as input to create the template database." +[ "$debug" -ne 0 ] && echo "$CMDNAME: using $TEMPLATE as input to create the template database." if [ $template_only -eq 0 ]; then - echo "$CMDNAME: using $GLOBAL as input to create the global classes." - echo "$CMDNAME: using $PG_HBA_SAMPLE as the host-based authentication" \ + [ "$debug" -ne 0 ] && echo "$CMDNAME: using $GLOBAL as input to create the global classes." + [ "$debug" -ne 0 ] && echo "$CMDNAME: using $PG_HBA_SAMPLE as the host-based authentication" \ "control file." echo fi |
