V8.00.000.2025.06.17
All checks were successful
🛡️ Shell Script Linting / 🛡️ Shell Script Linting (push) Successful in 1m54s

Signed-off-by: Marc S. Weidner <msw@coresecret.dev>
This commit is contained in:
2025-08-31 20:50:58 +02:00
parent 71d41ebe80
commit 5d99a2dcd0

View File

@@ -233,13 +233,6 @@ partitioning() {
esac
case "${var_encryption,,}" in
true)
typecode="ca7d7ccb-63ed-4c53-861c-1742536059cc" ;; ### Linux LUKS Partition
esac
case "${var_fs,,}" in
fat32)
@@ -260,6 +253,21 @@ partitioning() {
esac
case "${var_encryption,,}" in
true)
case "${var_mount_path,,}" in
/tmp|swap) : ;;
*)
typecode="ca7d7ccb-63ed-4c53-861c-1742536059cc" ;; ### Linux LUKS Partition
esac
esac
if sgdisk --typecode="${var_part}:${typecode}" "/dev/${var_dev}" &>/dev/null; then
do_log "info" "file_only" "3200() Partition: '/dev/${var_dev}${var_part}' GPT typecode '${typecode}' set for '${var_fs}'."