Add "..." to Install process termination message

This commit is contained in:
Suikan 2021-07-02 08:49:25 +09:00
parent f92329b782
commit a28dbcaa74
5 changed files with 22 additions and 21 deletions

View file

@ -50,9 +50,9 @@ function pre_install() {
if [ ! -e /dev/mapper/${CRYPTPARTNAME} ] ; then
cat <<- HEREDOC 1>&2
***** ERROR : Cannot open LUKS volume "${CRYPTPARTNAME}" on ${DEV}${CRYPTPARTITION}. *****
Check passphrase and config.txt
...Check passphrase and config.txt
Installation terminated.
...Installation process terminated..
HEREDOC
return 1 # with error status
fi # if crypt volume is unable to open
@ -82,9 +82,9 @@ function pre_install() {
if [ -e /dev/mapper/${VGNAME}-${LVROOTNAME} ] ; then
cat <<- HEREDOC 1>&2
***** ERROR : Logical volume "${VGNAME}-${LVROOTNAME}" already exists. *****
Check LVROOTNAME environment variable in config.txt.
...Check LVROOTNAME environment variable in config.txt.
Installation terminated.
...Installation process terminated..
HEREDOC
return 1 # with error status
else