From 45ec0d7a89a41b9a75dbf24b43f6803e746a98ca Mon Sep 17 00:00:00 2001 From: Eric Renfro Date: Fri, 2 Aug 2024 15:44:16 -0400 Subject: [PATCH] Update progress on LUKS mounting, instead of just asking passphrase again --- gentoo-install.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/gentoo-install.sh b/gentoo-install.sh index b57e76c..edcee89 100755 --- a/gentoo-install.sh +++ b/gentoo-install.sh @@ -84,6 +84,8 @@ function create_luks() { fi ${cmd} cryptsetup --batch-mode --cipher aes-xts-plain64 --hash sha512 --use-random --verify-passphrase luksFormat "$RootPart" + echo + echo "Mounting new LUKS volume to continue preparation. Please unlock below:" ${cmd} cryptsetup luksOpen "$RootPart" luksvol }