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

Signed-off-by: Marc S. Weidner <msw@coresecret.dev>
This commit is contained in:
2025-08-31 19:13:01 +02:00
parent bdb1365b2e
commit fb68e32876
4 changed files with 12 additions and 3 deletions

View File

@@ -26,6 +26,7 @@ guard_sourcing
# BIOS Boot Partition GRUB | 21686148-6449-6e6f-744e-656564454649
# Extended Boot Loader Partition | bc13c2ff-59e6-4262-a352-b275fd6f7172
# Linux Generic FS (ext4/btrfs) | 0fc63daf-8483-4772-8e79-3d69d8477de4
# Linux LUKS | ca7d7ccb-63ed-4c53-861c-1742536059cc
# Swap | 0657fd6d-a4ab-43c4-84e5-0933c84b4f4f
# / Partition (amd64/x86_64) | 4f68bce3-e8cd-4db1-96e7-fbcaf984b709
# /home | 933ac7e1-2eb4-4f13-b844-0e14e2aef915
@@ -252,6 +253,13 @@ partitioning() {
esac
case "${var_encryption,,}" in
true)
typecode="ca7d7ccb-63ed-4c53-861c-1742536059cc" ;; ### Linux LUKS Partition
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}'."