Install lvm2 explicitly

lvm2 is not part of the base installation now and vps2arch fails on lvm-enabled templates because of the missing package. Install lvm2 explicitly to fix this.
This commit is contained in:
Felix Yan 2019-11-10 08:50:42 +00:00
parent c0f0417743
commit cf1a8d08b1

View file

@ -120,7 +120,7 @@ delete_all() {
}
install_packages() {
local packages="base linux openssh reflector"
local packages="base linux lvm2 openssh reflector"
[ "$bootloader" != "none" ] && packages="$packages $bootloader"
# XXX Install gptdisk for syslinux. To be removed then FS#45029 will be closed
[ "$bootloader" = "syslinux" ] && packages="$packages gptfdisk"