diff options
author | Bruce Momjian <bruce@momjian.us> | 2000-11-13 23:37:54 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 2000-11-13 23:37:54 +0000 |
commit | ebd61ac03ff50ab69cdb8fc6330f5dca4551ce92 (patch) | |
tree | 0840f28d018043c4ac4b43572f6c511fb480e076 /src/bin/scripts/createlang.sh | |
parent | d63a762f799b08c28190ad3ae5ab4061aa83e762 (diff) |
Remove -k unix socketpath option from client side, allow hostname with
leading slash to behave as a unix socket path.
Diffstat (limited to 'src/bin/scripts/createlang.sh')
-rw-r--r-- | src/bin/scripts/createlang.sh | 12 |
1 files changed, 1 insertions, 11 deletions
diff --git a/src/bin/scripts/createlang.sh b/src/bin/scripts/createlang.sh index c22dcba652f..3fc0a1b02fa 100644 --- a/src/bin/scripts/createlang.sh +++ b/src/bin/scripts/createlang.sh @@ -8,7 +8,7 @@ # # # IDENTIFICATION -# $Header: /cvsroot/pgsql/src/bin/scripts/Attic/createlang.sh,v 1.18 2000/11/13 15:18:14 momjian Exp $ +# $Header: /cvsroot/pgsql/src/bin/scripts/Attic/createlang.sh,v 1.19 2000/11/13 23:37:53 momjian Exp $ # #------------------------------------------------------------------------- @@ -65,15 +65,6 @@ do --port=*) PSQLOPT="$PSQLOPT -p "`echo $1 | sed 's/^--port=//'` ;; - --unixsocket|-k) - PSQLOPT="$PSQLOPT -k $2" - shift;; - -k*) - PSQLOPT="$PSQLOPT $1" - ;; - --unixsocket=*) - PSQLOPT="$PSQLOPT -k "`echo $1 | sed 's/^--unixsocket=//'` - ;; --username|-U) PSQLOPT="$PSQLOPT -U $2" shift;; @@ -135,7 +126,6 @@ if [ "$usage" ]; then echo "Options:" echo " -h, --host=HOSTNAME Database server host" echo " -p, --port=PORT Database server port" - echo " -k, --unixsocket=PATH Database server Unix-domain socket name" echo " -U, --username=USERNAME Username to connect as" echo " -W, --password Prompt for password" echo " -d, --dbname=DBNAME Database to install language in" |