From bf01aa73994e3d7ce6e1c9b70b930fd9621bf2a3 Mon Sep 17 00:00:00 2001 From: Tobias Powalowski Date: Wed, 25 Jan 2023 09:22:00 +0100 Subject: [PATCH] bigger size --- usr/lib/archboot/installer/blockdevices.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/usr/lib/archboot/installer/blockdevices.sh b/usr/lib/archboot/installer/blockdevices.sh index b8f7e3c8a..da66a3cb9 100644 --- a/usr/lib/archboot/installer/blockdevices.sh +++ b/usr/lib/archboot/installer/blockdevices.sh @@ -857,9 +857,9 @@ _enter_luks_name() { _enter_luks_passphrase () { _LUKSPASSPHRASE="" while [[ -z "${_LUKSPASSPHRASE}" ]]; do - _dialog --insecure --passwordbox "Enter passphrase for luks encrypted device\n${_DEV}:" 0 0 2>"${_ANSWER}" || return 1 + _dialog --insecure --passwordbox "Enter passphrase for luks encrypted device\n${_LUKSDEV}:" 5 60 2>"${_ANSWER}" || return 1 _LUKSPASS=$(cat "${_ANSWER}") - _dialog --insecure --passwordbox "Retype passphrase for luks encrypted device\n${_DEV}:" 0 0 2>"${_ANSWER}" || return 1 + _dialog --insecure --passwordbox "Retype passphrase for luks encrypted device\n${_LUKSDEV}:" 5 60 2>"${_ANSWER}" || return 1 _LUKSPASS2=$(cat "${_ANSWER}") if [[ -n "${_LUKSPASS}" && -n "${_LUKSPASS2}" && "${_LUKSPASS}" == "${_LUKSPASS2}" ]]; then _LUKSPASSPHRASE=${_LUKSPASS}