diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2003-02-20 19:54:46 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2003-02-20 19:54:46 +0000 |
commit | 5e90be8c543f2ea5fa8d987245abf2337f634ea3 (patch) | |
tree | 111cc3f7f59b10c26cb48512a2d9d16a21355b2c /perl-install/fsedit.pm | |
parent | 662a5c39e020c053151a4974427cfff64166c111 (diff) | |
download | drakx-5e90be8c543f2ea5fa8d987245abf2337f634ea3.tar drakx-5e90be8c543f2ea5fa8d987245abf2337f634ea3.tar.gz drakx-5e90be8c543f2ea5fa8d987245abf2337f634ea3.tar.bz2 drakx-5e90be8c543f2ea5fa8d987245abf2337f634ea3.tar.xz drakx-5e90be8c543f2ea5fa8d987245abf2337f634ea3.zip |
use cdie instead of die for warnings
Diffstat (limited to 'perl-install/fsedit.pm')
-rw-r--r-- | perl-install/fsedit.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/fsedit.pm b/perl-install/fsedit.pm index 3e2049e64..6da3aeaf2 100644 --- a/perl-install/fsedit.pm +++ b/perl-install/fsedit.pm @@ -529,7 +529,7 @@ sub check_mntpoint { $mntpoint =~ m|^/| or die \N("Mount points must begin with a leading /"); $mntpoint ne $part->{mntpoint} && has_mntpoint($mntpoint, $all_hds) and die \N("There is already a partition with mount point %s\n", $mntpoint); - die \N("You've selected a software RAID partition as root (/). + 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) && !has_mntpoint("/boot", $all_hds); die \N("You can't use a LVM Logical Volume for mount point %s", $mntpoint) |