From 8b2f1542f5cd3a752d615c8d9abec5f67cdf9acf Mon Sep 17 00:00:00 2001 From: Suikan <26223147+suikan4github@users.noreply.github.com> Date: Thu, 1 Jul 2021 21:45:54 +0900 Subject: [PATCH] Warning of "-" validation is corrected. --- script/common/confirmation.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/script/common/confirmation.sh b/script/common/confirmation.sh index c2fd49c..8503411 100644 --- a/script/common/confirmation.sh +++ b/script/common/confirmation.sh @@ -9,7 +9,7 @@ function confirmation(){ if echo ${VGNAME} | grep "-" -i > /dev/null ; then # "-" is found in the volume group name. cat <<- HEREDOC 1>&2 ***** ERROR : VGNAME is "${VGNAME}" ***** - THe "-" is not allowed in the volume name. + "-" is not allowed in the volume name. Check passphrase and config.txt Installation terminated. @@ -21,7 +21,7 @@ function confirmation(){ if echo ${LVROOTNAME} | grep "-" -i > /dev/null ; then # "-" is found in the volume name. cat <<- HEREDOC 1>&2 ***** ERROR : LVROOTNAME is "${LVROOTNAME}" ***** - THe "-" is not allowed in the volume name. + "-" is not allowed in the volume name. Check passphrase and config.txt Installation terminated. @@ -33,7 +33,7 @@ function confirmation(){ if echo ${LVSWAPNAME} | grep "-" -i > /dev/null ; then # "-" is found in the volume name. cat <<- HEREDOC 1>&2 ***** ERROR : LVSWAPNAME is "${LVSWAPNAME}" ***** - THe "-" is not allowed in the volume name. + "-" is not allowed in the volume name. Check passphrase and config.txt Installation terminated.