From: Thomas G. Lockhart Date: Tue, 1 Sep 1998 15:57:00 +0000 (+0000) Subject: Fix message delimiters for substitution by sed script during installation. X-Git-Tag: REL6_4_2~510 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=b9cbb1ed394aa9021afb4e0a8a9a8c40904653ab;p=postgresql Fix message delimiters for substitution by sed script during installation. They were missing a "PG_" prefix so were not substituted properly. --- diff --git a/src/bin/destroyuser/destroyuser.sh b/src/bin/destroyuser/destroyuser.sh index 35407f8d37..aa3e13a94f 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.9 1998/08/22 05:19:21 momjian Exp $ +# $Header: /cvsroot/pgsql/src/bin/destroyuser/Attic/destroyuser.sh,v 1.10 1998/09/01 15:57:00 thomas Exp $ # # Note - this should NOT be setuid. # @@ -90,7 +90,7 @@ fi if [ -z "$DELUSER" ] then - echo OPT_DASH_N_PARAM "Enter name of user to delete ---> OPT_BACKSLASH_C_PARAM" + echo PG_OPT_DASH_N_PARAM "Enter name of user to delete ---> PG_OPT_BACKSLASH_C_PARAM" read DELUSER fi @@ -154,7 +154,7 @@ then yn=f while [ $yn != y -a $yn != n ] do - echo OPT_DASH_N_PARAM "Deleting user $DELUSER will destroy them. Continue (y/n)? OPT_BACKSLASH_C_PARAM" + echo PG_OPT_DASH_N_PARAM "Deleting user $DELUSER will destroy them. Continue (y/n)? PG_OPT_BACKSLASH_C_PARAM" read yn done