Commit b9cbb1ed authored by Thomas G. Lockhart's avatar Thomas G. Lockhart

Fix message delimiters for substitution by sed script during installation.

 They were missing a "PG_" prefix so were not substituted properly.
parent 1660e300
...@@ -8,7 +8,7 @@ ...@@ -8,7 +8,7 @@
# #
# #
# IDENTIFICATION # 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. # Note - this should NOT be setuid.
# #
...@@ -90,7 +90,7 @@ fi ...@@ -90,7 +90,7 @@ fi
if [ -z "$DELUSER" ] if [ -z "$DELUSER" ]
then 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 read DELUSER
fi fi
...@@ -154,7 +154,7 @@ then ...@@ -154,7 +154,7 @@ then
yn=f yn=f
while [ $yn != y -a $yn != n ] while [ $yn != y -a $yn != n ]
do 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 read yn
done done
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment