void-bash-installer/modules/10-disk/install

120 lines
3.1 KiB
Plaintext
Raw Normal View History

2021-03-12 19:40:59 +01:00
if ! yesno "nun gehts los, sicher?" n; then
exit
fi
2021-03-11 14:04:04 +01:00
2021-03-12 19:57:45 +01:00
module start "disk" "Partition disk"
2021-03-11 14:04:04 +01:00
source "${var}"
#umounter "${dest}" || exit
if [[ ! "${cfg[fde_key_store]}" == "none" ]]; then
addpkg cryptsetup
fi
diskid="${cfg[diskid]//-/_}"
if [[ -n "${cfg[wipe]}" ]]; then
echo "Formatting disk"
echo "o
w
2021-03-12 23:00:59 +01:00
q" | fdisk "${cfg[diskname]}" > /dev/null
2021-03-11 14:04:04 +01:00
fi
if [[ "${cfg[fde_key_store]}" == "once" ]]; then
echo "create bootpartition"
target_boot="${cfg[diskname]}1"
echo "n
p
1
+${cfg[bootsize]}G
a
w
2021-03-12 23:00:59 +01:00
q" | fdisk "${cfg[diskname]}" > /dev/null
2021-03-11 14:04:04 +01:00
if [[ "${cfg[rootfssize]}" == "rest" ]]; then
target_partition_tmp="${cfg[diskname]}2"
echo "create rootfs"
echo "n
p
2
w
2021-03-12 23:00:59 +01:00
q" | fdisk "${cfg[diskname]}" > /dev/null
2021-03-11 14:04:04 +01:00
elif [[ ! "${cfg[rootfssize]}" == "rest" ]]; then
target_partition_tmp="${cfg[diskname]}2"
echo "create rootfs with a specific size"
echo "n
p
2
+${rootfssize}G
w
2021-03-12 23:00:59 +01:00
q" | fdisk "${cfg[diskname]}" > /dev/null
2021-03-11 14:04:04 +01:00
fi
else
if [[ "${cfg[rootfssize]}" == "rest" ]]; then
target_partition_tmp="${cfg[diskname]}1"
echo "create rootfs without boot"
echo "n
p
1
a
w
2021-03-12 23:00:59 +01:00
q" | fdisk "${cfg[diskname]}" > /dev/null
2021-03-11 14:04:04 +01:00
elif [[ ! "${cfg[rootfssize]}" == "rest" ]]; then
target_partition_tmp="${cfg[diskname]}1"
echo "create rootfs with a specific size without boot"
echo "n
p
1
 
+${rootfssize}G
a
w
2021-03-12 23:00:59 +01:00
q" | fdisk "${cfg[diskname]}" > /dev/null
2021-03-11 14:04:04 +01:00
fi
fi
target_partition="${target_partition_tmp}"
2021-03-12 22:47:34 +01:00
if [[ ! "${cfg[fde_key_store]}" == "none" ]]; then
2021-03-11 14:04:04 +01:00
echo -n "${cfg[diskpw]}" | cryptsetup luksFormat --type luks1 "${target_partition}" -d -
echo -n "${cfg[diskpw]}" | cryptsetup luksOpen "${target_partition}" "voidluks-${diskid}" -d -
target_partition="/dev/mapper/voidluks-${diskid}"
fi
2021-03-12 23:02:14 +01:00
mkswap "${target_partition}"
2021-03-11 14:04:04 +01:00
vgcreate -q -f "voidvg.${diskid}" "${target_partition}" || exit 1
lvcreate -q -y --name swap -L "${cfg[swapsize]}"G "voidvg.${diskid}"
lvcreate -q -y --name root -l 100%FREE "voidvg.${diskid}"
mkfs.btrfs -q -f "/dev/mapper/voidvg.${diskid}-root"
mkswap "/dev/mapper/voidvg.${diskid}-swap"
mount "/dev/mapper/voidvg.${diskid}-root" "${dest}"
btrfs subvol create "${dest}/void-rootfs"
btrfs subvol create "${dest}/home"
2021-03-13 12:48:16 +01:00
mkdir -p "${dest}/snapshot"
2021-03-11 14:04:04 +01:00
umount "${dest}"
mount "/dev/mapper/voidvg.${diskid}-root" "${dest}" -o subvol=void-rootfs
2021-03-13 12:25:43 +01:00
for i in boot home dev proc sys tmp etc var/lib/backup/quelle var/db; do mkdir -p "${dest}/${i}"; done
2021-03-11 14:04:04 +01:00
mount "/dev/mapper/voidvg.${diskid}-root" "${dest}"/home -o subvol=home
if [[ "${cfg[fde_key_store]}" == "once" ]]; then
mkfs.btrfs -q -f "${target_boot}"
mount "${target_boot}" "${dest}/boot"
fi
for dir in dev proc sys run; do mkdir -p "${dest}"/$dir ; mount --rbind /$dir "${dest}"/$dir ; mount --make-rslave "${dest}"/$dir ; done
setconf add rootuuid "$(blkid -o value -s UUID ${target_partition})"
setconf add partuuid "$(blkid -o value -s UUID ${cfg[diskname]}${cfg[target_part]})"
[[ "${cfg[fde_key_store]}" == "once" ]] && setconf "add" "bootuuid" "$(blkid -o value -s UUID ${target_boot})"
setconf add swapuuid "$(blkid -o value -s UUID /dev/mapper/voidvg.${diskid}-swap)"
mount -t tmpfs -o size=512m tmpfs "${dest}"/tmp
2021-03-12 19:40:59 +01:00
module end