diff options
author | Thierry Vignaud <thierry.vignaud@gmail.com> | 2016-06-09 10:51:28 +0200 |
---|---|---|
committer | Thierry Vignaud <thierry.vignaud@gmail.com> | 2016-06-11 09:39:32 +0200 |
commit | 9e340d74e5196ef9e52a6790330ef68a00b55a57 (patch) | |
tree | 29cf360bba46cc41fe35bd9633b5e72f4063dca7 /perl-install/fs | |
parent | 83565d0739e5746ea02c210106a2d1f1d1477eda (diff) | |
download | drakx-9e340d74e5196ef9e52a6790330ef68a00b55a57.tar drakx-9e340d74e5196ef9e52a6790330ef68a00b55a57.tar.gz drakx-9e340d74e5196ef9e52a6790330ef68a00b55a57.tar.bz2 drakx-9e340d74e5196ef9e52a6790330ef68a00b55a57.tar.xz drakx-9e340d74e5196ef9e52a6790330ef68a00b55a57.zip |
refactor for next commit
Diffstat (limited to 'perl-install/fs')
-rw-r--r-- | perl-install/fs/any.pm | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/perl-install/fs/any.pm b/perl-install/fs/any.pm index bd5f99b7e..5471980d2 100644 --- a/perl-install/fs/any.pm +++ b/perl-install/fs/any.pm @@ -67,8 +67,10 @@ sub check_hds_boot_and_root { my ($all_hds, $fstab) = @_; fs::get::root_($fstab) or die "Oops, no root partition"; - if (is_uefi() && !fs::get::has_mntpoint("/boot/EFI", $all_hds)) { - die N("You must have a ESP FAT32 partition mounted in /boot/EFI"); + if (is_uefi()) { + if (!fs::get::has_mntpoint("/boot/EFI", $all_hds)) { + die N("You must have a ESP FAT32 partition mounted in /boot/EFI"); + } } } |