From 7dd618f76b3deb5e1d790cc199b00e414e81e89f Mon Sep 17 00:00:00 2001 From: Tobias Powalowski Date: Sun, 15 Jan 2023 19:56:46 +0100 Subject: [PATCH] don't wait for y --- 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 ec03f0695..12f6f2d9a 100644 --- a/usr/lib/archboot/installer/blockdevices.sh +++ b/usr/lib/archboot/installer/blockdevices.sh @@ -820,10 +820,10 @@ _createlv() [[ -z "${_LV_ALL}" ]] && _dialog --defaultno --yesno "Would you like to create Logical Volume as a contiguous partition, that means that your space doesn't get partitioned over one or more disks nor over non-contiguous physical extents.\n(usefull for swap space etc.)?" 0 0 && _LV_CONTIGUOUS=1 if [[ -n "${_LV_CONTIGUOUS}" ]]; then _CONTIGUOUS=yes - _LV_EXTRA="-W -C -y" + _LV_EXTRA="-W y -C y -y" else _CONTIGUOUS=no - _LV_EXTRA="-W -y" + _LV_EXTRA="-W y -y" fi [[ -z "${_LV_SIZE}" ]] && _LV_SIZE="All free space left" # final step ask if everything is ok?