Variable declaration fix

This commit is contained in:
0x221E
2026-02-13 22:54:42 +01:00
parent a4fb09b0be
commit 2f0f89ebb9

View File

@@ -13,9 +13,9 @@ parted -s "$PART" set 1 esp on
parted -s "$PART" mkpart primary linux-swap 3GB 27GB
parted -s "$PART" mkpart primary ext4 27GB 100%
PART_BOOT = "${PART}1"
PART_SWAP = "${PART}2"
PART_ROOTHOME = "${PART}3"
PART_BOOT="${PART}1"
PART_SWAP="${PART}2"
PART_ROOTHOME="${PART}3"
echo -n "$LUKS_PASS" | cryptsetup luksFormat --type luks2 --iter-time 5000 "${PART_ROOTHOME}"
echo -n "$LUKS_PASS" | cryptsetup open "${PART_ROOTHOME}" roothome