summaryrefslogtreecommitdiffstats
path: root/perl-install/fsedit.pm
diff options
context:
space:
mode:
authorPascal Rigaux <pixel@mandriva.com>2005-12-02 10:45:02 +0000
committerPascal Rigaux <pixel@mandriva.com>2005-12-02 10:45:02 +0000
commitb470c6d5ac9765af2f992dcf48587abd1599b8d9 (patch)
treed0b75f931c00d34496629c7d55d09ef9dd0d5f53 /perl-install/fsedit.pm
parent6e0616636c9dcc7bab8f18abd2791062163da12d (diff)
downloaddrakx-backup-do-not-use-b470c6d5ac9765af2f992dcf48587abd1599b8d9.tar
drakx-backup-do-not-use-b470c6d5ac9765af2f992dcf48587abd1599b8d9.tar.gz
drakx-backup-do-not-use-b470c6d5ac9765af2f992dcf48587abd1599b8d9.tar.bz2
drakx-backup-do-not-use-b470c6d5ac9765af2f992dcf48587abd1599b8d9.tar.xz
drakx-backup-do-not-use-b470c6d5ac9765af2f992dcf48587abd1599b8d9.zip
lilo handles / on RAID1, so don't warn in that case (#20021)
Diffstat (limited to 'perl-install/fsedit.pm')
-rw-r--r--perl-install/fsedit.pm7
1 files changed, 5 insertions, 2 deletions
diff --git a/perl-install/fsedit.pm b/perl-install/fsedit.pm
index 0e6c02fe4..ee2227538 100644
--- a/perl-install/fsedit.pm
+++ b/perl-install/fsedit.pm
@@ -383,9 +383,12 @@ sub check_mntpoint {
$mntpoint =~ m|[\x7f-\xff]| and cdie N("Mount points should contain only alphanumerical characters");
fs::get::mntpoint2part($mntpoint, [ grep { $_ ne $part } fs::get::really_all_fstab($all_hds) ]) and die N("There is already a partition with mount point %s\n", $mntpoint);
- cdie N("You've selected a software RAID partition as root (/).
+ if ($mntpoint eq "/" && isRAID($part) && !fs::get::has_mntpoint("/boot", $all_hds)) {
+ my $md_part = fs::get::device2part($part->{raid}, $all_hds->{raids});
+ cdie N("You've selected a software RAID partition as root (/).
No bootloader is able to handle this without a /boot partition.
-Please be sure to add a /boot partition") if $mntpoint eq "/" && isRAID($part) && !fs::get::has_mntpoint("/boot", $all_hds);
+Please be sure to add a /boot partition") if $md_part->{level} ne '1'; # lilo handles / on RAID1
+ }
#- NB: if the LV doesn't exist, lv_nb_pvs returns 0
die N("You can not use the LVM Logical Volume for mount point %s since it spans physical volumes", $mntpoint)