Do not confirm LUKS setup, just do

This commit is contained in:
Eric Renfro 2024-08-02 15:41:52 -04:00
parent 27f611ccee
commit 2f398fd719
Signed by: psi-jack
SSH key fingerprint: SHA256:1TKB8Z257L8EHK8GWNxKgMhD8a+FAR+f+j3nnlcuNVM

View file

@ -83,7 +83,7 @@ function create_luks() {
local cmd="" local cmd=""
fi fi
${cmd} cryptsetup --cipher aes-xts-plain64 --hash sha512 --use-random --verify-passphrase luksFormat "$RootPart" ${cmd} cryptsetup --batch-mode --cipher aes-xts-plain64 --hash sha512 --use-random --verify-passphrase luksFormat "$RootPart"
${cmd} cryptsetup luksOpen "$RootPart" luksvol ${cmd} cryptsetup luksOpen "$RootPart" luksvol
} }