summaryrefslogtreecommitdiffstats
path: root/perl-install/fs
diff options
context:
space:
mode:
authorThierry Vignaud <thierry.vignaud@gmail.com>2020-03-04 04:51:04 +0100
committerThierry Vignaud <thierry.vignaud@gmail.com>2020-03-04 04:56:25 +0100
commitebeb5194b62649d2b396eac8c97f6ad3bbc772f3 (patch)
tree025ce630afba51e22d14b9b5b7293677329645c9 /perl-install/fs
parentfb1c6bd477df5d8b42e56c11959579a51c1e7f81 (diff)
downloaddrakx-ebeb5194b62649d2b396eac8c97f6ad3bbc772f3.tar
drakx-ebeb5194b62649d2b396eac8c97f6ad3bbc772f3.tar.gz
drakx-ebeb5194b62649d2b396eac8c97f6ad3bbc772f3.tar.bz2
drakx-ebeb5194b62649d2b396eac8c97f6ad3bbc772f3.tar.xz
drakx-ebeb5194b62649d2b396eac8c97f6ad3bbc772f3.zip
skip disk ESP & BIOS boot partition checks
they now block local install with drakx-in-chroot
Diffstat (limited to 'perl-install/fs')
-rw-r--r--perl-install/fs/any.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/fs/any.pm b/perl-install/fs/any.pm
index ba45c7bdc..ce4de2ca3 100644
--- a/perl-install/fs/any.pm
+++ b/perl-install/fs/any.pm
@@ -70,7 +70,7 @@ sub check_hds_boot_and_root {
my ($all_hds, $fstab, $isUpgrade, $o_match_all_hardware) = @_;
fs::get::root_($fstab) or die "Oops, no root partition";
- return if $o_match_all_hardware;
+ return if $o_match_all_hardware || $::local_install;
if (is_uefi()) {
if (!fs::get::has_mntpoint("/boot/EFI", $all_hds)) {