From c4f68fc29b8cff6d833492dc8b3ff789b12c7c14 Mon Sep 17 00:00:00 2001 From: Marc Beninca Date: Tue, 12 Nov 2024 23:32:36 +0100 Subject: [PATCH] fix --- bash/fs.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bash/fs.sh b/bash/fs.sh index bf59782..9c1d122 100644 --- a/bash/fs.sh +++ b/bash/fs.sh @@ -97,7 +97,7 @@ luks_format() { set -- "${@}" --label "${label}" fi if [ -n "${uuid}" ]; then - set -- "${@}" --label "${uuid}" + set -- "${@}" --uuid "${uuid}" fi echo "${passphrase}" | cryptsetup "${@}" luksFormat "${device}"