From f83ba3606013d1eed9d7d2ff084c2c9726313525 Mon Sep 17 00:00:00 2001 From: Thierry Vignaud Date: Thu, 19 Mar 2020 18:15:01 +0100 Subject: install dmsetup when encrypting "/" thus workarounding unbootable minimal system as dracut's crypt module depends on it It should probably a dep in cryptsetup --- perl-install/install/any.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'perl-install/install/any.pm') diff --git a/perl-install/install/any.pm b/perl-install/install/any.pm index 463f057e3..3c630df0b 100644 --- a/perl-install/install/any.pm +++ b/perl-install/install/any.pm @@ -855,7 +855,7 @@ sub default_packages { add_n_log("method==nfs", "nfs-utils") if $o->{method} eq "nfs"; add_n_log("have RAID", "mdadm") if !is_empty_array_ref($o->{all_hds}{raids}); add_n_log("have LVM", "lvm2") if !is_empty_array_ref($o->{all_hds}{lvms}); - add_n_log("have crypted DM", "cryptsetup") if !is_empty_array_ref($o->{all_hds}{dmcrypts}); + add_n_log("have crypted DM", qw(cryptsetup dmsetup)) if !is_empty_array_ref($o->{all_hds}{dmcrypts}); add_n_log("some disks are fake RAID", qw(mdadm dmraid)) if any { fs::type::is_dmraid($_) } @{$o->{all_hds}{hds}}; add_n_log("CPU needs microcode", "microcode_ctl") if detect_devices::hasCPUMicrocode(); add_n_log("either CPU or GFX needs firmware", is_firmware_needed($o)) if is_firmware_needed($o); -- cgit v1.2.1