This commit is contained in:
Maximilian Keßler 2022-07-25 16:19:50 +02:00
parent f6af25193c
commit 782a24aa2f

View File

@ -87,8 +87,8 @@ echo "${password}" | cryptsetup open "${part_luks}" "${cryptlvm}"
pvcreate "${mapped_device}"
vgcreate "${vlgrp}" "${mapped_device}"
lvcreate -L "{$swap_size}" "${vlgrp}" -n swap
lvcreate -L "{$root_size}" "${vlgrp}" -n root
lvcreate -L "${swap_size}" "${vlgrp}" -n swap
lvcreate -L "${root_size}" "${vlgrp}" -n root
lvcreate -l '99%FREE' "${vlgrp}" -n home
mkfs.fat -F32 "${part_boot}"