diff --git a/src/bin/createdb/createdb.sh b/src/bin/createdb/createdb.sh index 0baab04634bbc42d3aeab0d22dbd047bc8d2a3f4..db41e1d0277c9dbeed9c659dab1c42836d999f20 100644 --- a/src/bin/createdb/createdb.sh +++ b/src/bin/createdb/createdb.sh @@ -11,7 +11,7 @@ # # # IDENTIFICATION -# $Header: /cvsroot/pgsql/src/bin/createdb/Attic/createdb.sh,v 1.2 1996/07/25 06:55:23 scrappy Exp $ +# $Header: /cvsroot/pgsql/src/bin/createdb/Attic/createdb.sh,v 1.3 1996/07/27 02:19:00 scrappy Exp $ # #------------------------------------------------------------------------- @@ -58,7 +58,7 @@ done AUTHOPT="-a $AUTHSYS" [ -z "$AUTHSYS" ] && AUTHOPT="" -psql -Tq $AUTHOPT -H $PGHOST -p $PGPORT -c "create database $dbname" template1 || { +psql -tq $AUTHOPT -h $PGHOST -p $PGPORT -c "create database $dbname" template1 || { echo "$CMDNAME: database creation failed on $dbname." exit 1 } diff --git a/src/bin/createuser/createuser.sh b/src/bin/createuser/createuser.sh index 942fccfbc628fca57e79a399cffb0dabf1f798fd..56dfb53ed49f73a41eeaa32432f0b50497b9c78a 100644 --- a/src/bin/createuser/createuser.sh +++ b/src/bin/createuser/createuser.sh @@ -8,7 +8,7 @@ # # # IDENTIFICATION -# $Header: /cvsroot/pgsql/src/bin/createuser/Attic/createuser.sh,v 1.2 1996/07/25 06:55:30 scrappy Exp $ +# $Header: /cvsroot/pgsql/src/bin/createuser/Attic/createuser.sh,v 1.3 1996/07/27 02:19:06 scrappy Exp $ # # Note - this should NOT be setuid. # @@ -55,7 +55,7 @@ done AUTHOPT="-a $AUTHSYS" [ -z "$AUTHSYS" ] && AUTHOPT="" -PARGS="-T -q $AUTHOPT -H $PGHOST -p $PGPORT" +PARGS="-tq $AUTHOPT -h $PGHOST -p $PGPORT" # # generate the first part of the actual monitor command diff --git a/src/bin/destroydb/destroydb.sh b/src/bin/destroydb/destroydb.sh index 79b24a957cf893d7fab32d8915094ef6b352b9d2..5c069779818514e4eb64c206f864701efeac2dd7 100644 --- a/src/bin/destroydb/destroydb.sh +++ b/src/bin/destroydb/destroydb.sh @@ -11,7 +11,7 @@ # # # IDENTIFICATION -# $Header: /cvsroot/pgsql/src/bin/destroydb/Attic/destroydb.sh,v 1.2 1996/07/25 06:55:41 scrappy Exp $ +# $Header: /cvsroot/pgsql/src/bin/destroydb/Attic/destroydb.sh,v 1.3 1996/07/27 02:19:12 scrappy Exp $ # #------------------------------------------------------------------------- @@ -58,7 +58,7 @@ done AUTHOPT="-a $AUTHSYS" [ -z "$AUTHSYS" ] && AUTHOPT="" -psql -Tq -H $PGHOST -p $PGPORT -c "drop database $dbname" template1 +psql -tq -h $PGHOST -p $PGPORT -c "drop database $dbname" template1 if [ $? -ne 0 ] then diff --git a/src/bin/destroyuser/destroyuser.sh b/src/bin/destroyuser/destroyuser.sh index cb257ef448513e10970e080e891e72ea0b997b3c..4e361cb2168b1002f7dfc34526050a294dcabae8 100644 --- a/src/bin/destroyuser/destroyuser.sh +++ b/src/bin/destroyuser/destroyuser.sh @@ -8,7 +8,7 @@ # # # IDENTIFICATION -# $Header: /cvsroot/pgsql/src/bin/destroyuser/Attic/destroyuser.sh,v 1.2 1996/07/25 06:55:49 scrappy Exp $ +# $Header: /cvsroot/pgsql/src/bin/destroyuser/Attic/destroyuser.sh,v 1.3 1996/07/27 02:19:18 scrappy Exp $ # # Note - this should NOT be setuid. # @@ -55,7 +55,7 @@ done AUTHOPT="-a $AUTHSYS" [ -z "$AUTHSYS" ] && AUTHOPT="" -PARGS="-Tq $AUTHOPT -p $PGPORT -H $PGHOST" +PARGS="-tq $AUTHOPT -p $PGPORT -h $PGHOST" # # generate the first part of the actual monitor command