14 lines
508 B
Bash
14 lines
508 B
Bash
PKGS_EXTRA+=( btrfs-progs lvm2 mdadm )
|
|
PKGS_EXTRA+=( cryptsetup-initramfs )
|
|
|
|
# "$DISTRIBUTOR_ID" is defined in ../utils/cryptroot-common
|
|
# Workaround for LP1831747 https://bugs.launchpad.net/ubuntu/+source/initramfs-tools/+bug/1831747
|
|
# Add implicit dependency of cryptsetup-initramfs
|
|
if [ "$DISTRIBUTOR_ID" = "ubuntu" ]; then
|
|
PKGS_EXTRA+=( e2fsprogs )
|
|
fi
|
|
|
|
# /dev/mapper/testvg-lv1_crypt and /dev/vdc are both 1G and used in RAID1 mode
|
|
DRIVE_SIZES=( "1G" "264M" "1G" "512M" )
|
|
|
|
# vim: set filetype=bash :
|