Variable declaration fix
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user