File tree 4 files changed +8
-8
lines changed
4 files changed +8
-8
lines changed Original file line number Diff line number Diff line change 11
11
#
12
12
#
13
13
# IDENTIFICATION
14
- # $Header: /cvsroot/pgsql/src/bin/createdb/Attic/createdb.sh,v 1.2 1996/07/25 06:55:23 scrappy Exp $
14
+ # $Header: /cvsroot/pgsql/src/bin/createdb/Attic/createdb.sh,v 1.3 1996/07/27 02:19:00 scrappy Exp $
15
15
#
16
16
# -------------------------------------------------------------------------
17
17
58
58
AUTHOPT=" -a $AUTHSYS "
59
59
[ -z " $AUTHSYS " ] && AUTHOPT=" "
60
60
61
- psql -Tq $AUTHOPT -H $PGHOST -p $PGPORT -c " create database $dbname " template1 || {
61
+ psql -tq $AUTHOPT -h $PGHOST -p $PGPORT -c " create database $dbname " template1 || {
62
62
echo " $CMDNAME : database creation failed on $dbname ."
63
63
exit 1
64
64
}
Original file line number Diff line number Diff line change 8
8
#
9
9
#
10
10
# IDENTIFICATION
11
- # $Header: /cvsroot/pgsql/src/bin/createuser/Attic/createuser.sh,v 1.2 1996/07/25 06:55:30 scrappy Exp $
11
+ # $Header: /cvsroot/pgsql/src/bin/createuser/Attic/createuser.sh,v 1.3 1996/07/27 02:19:06 scrappy Exp $
12
12
#
13
13
# Note - this should NOT be setuid.
14
14
#
55
55
AUTHOPT=" -a $AUTHSYS "
56
56
[ -z " $AUTHSYS " ] && AUTHOPT=" "
57
57
58
- PARGS=" -T -q $AUTHOPT -H $PGHOST -p $PGPORT "
58
+ PARGS=" -tq $AUTHOPT -h $PGHOST -p $PGPORT "
59
59
60
60
#
61
61
# generate the first part of the actual monitor command
Original file line number Diff line number Diff line change 11
11
#
12
12
#
13
13
# IDENTIFICATION
14
- # $Header: /cvsroot/pgsql/src/bin/destroydb/Attic/destroydb.sh,v 1.2 1996/07/25 06:55:41 scrappy Exp $
14
+ # $Header: /cvsroot/pgsql/src/bin/destroydb/Attic/destroydb.sh,v 1.3 1996/07/27 02:19:12 scrappy Exp $
15
15
#
16
16
# -------------------------------------------------------------------------
17
17
58
58
AUTHOPT=" -a $AUTHSYS "
59
59
[ -z " $AUTHSYS " ] && AUTHOPT=" "
60
60
61
- psql -Tq -H $PGHOST -p $PGPORT -c " drop database $dbname " template1
61
+ psql -tq -h $PGHOST -p $PGPORT -c " drop database $dbname " template1
62
62
63
63
if [ $? -ne 0 ]
64
64
then
Original file line number Diff line number Diff line change 8
8
#
9
9
#
10
10
# IDENTIFICATION
11
- # $Header: /cvsroot/pgsql/src/bin/destroyuser/Attic/destroyuser.sh,v 1.2 1996/07/25 06:55:49 scrappy Exp $
11
+ # $Header: /cvsroot/pgsql/src/bin/destroyuser/Attic/destroyuser.sh,v 1.3 1996/07/27 02:19:18 scrappy Exp $
12
12
#
13
13
# Note - this should NOT be setuid.
14
14
#
55
55
AUTHOPT=" -a $AUTHSYS "
56
56
[ -z " $AUTHSYS " ] && AUTHOPT=" "
57
57
58
- PARGS=" -Tq $AUTHOPT -p $PGPORT -H $PGHOST "
58
+ PARGS=" -tq $AUTHOPT -p $PGPORT -h $PGHOST "
59
59
60
60
#
61
61
# generate the first part of the actual monitor command
You can’t perform that action at this time.
0 commit comments