diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2005-09-22 13:56:01 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2005-09-22 13:56:01 +0000 |
commit | c49185f507daac67df3779f0d08907ce51f23260 (patch) | |
tree | 36f19a62c34b15347fb06365df2dd522b75f04b0 /perl-install/fsedit.pm | |
parent | 15351363e7267250fcc31effdeb36319453fb8b1 (diff) | |
download | drakx-c49185f507daac67df3779f0d08907ce51f23260.tar drakx-c49185f507daac67df3779f0d08907ce51f23260.tar.gz drakx-c49185f507daac67df3779f0d08907ce51f23260.tar.bz2 drakx-c49185f507daac67df3779f0d08907ce51f23260.tar.xz drakx-c49185f507daac67df3779f0d08907ce51f23260.zip |
fix typos (thanks to Arpad Biro)
Diffstat (limited to 'perl-install/fsedit.pm')
-rw-r--r-- | perl-install/fsedit.pm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/perl-install/fsedit.pm b/perl-install/fsedit.pm index fd2119945..c06944a13 100644 --- a/perl-install/fsedit.pm +++ b/perl-install/fsedit.pm @@ -391,9 +391,9 @@ 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); #- NB: if the LV doesn't exist, lv_nb_pvs returns 0 - die N("You can not use a LVM Logical Volume for mount point %s since it spans physical volumes", $mntpoint) + die N("You can not use the LVM Logical Volume for mount point %s since it spans physical volumes", $mntpoint) if $mntpoint eq '/boot' && isLVM($part) && lvm::lv_nb_pvs($part) > 1; - cdie N("You've selected a LVM Logical Volume as root (/). + cdie N("You've selected the LVM Logical Volume as root (/). The bootloader is not able to handle this when the volume spans physical volumes. You should create a /boot partition first") if $mntpoint eq "/" && isLVM($part) && lvm::lv_nb_pvs($part) != 1 && !fs::get::has_mntpoint("/boot", $all_hds); |