summaryrefslogtreecommitdiffstats
path: root/perl-install/fsedit.pm
diff options
context:
space:
mode:
authorMystery Man <unknown@mandriva.org>2005-09-25 12:01:54 +0000
committerMystery Man <unknown@mandriva.org>2005-09-25 12:01:54 +0000
commite24d09373c1f81a46f75f297e0753399b13cf810 (patch)
treef08d3f7c7ae1470fdd33f4049350cf45457b5924 /perl-install/fsedit.pm
parentfb954c3dc41336a56a3ede45f2a41ed9c807f6b7 (diff)
downloaddrakx-backup-do-not-use-e24d09373c1f81a46f75f297e0753399b13cf810.tar
drakx-backup-do-not-use-e24d09373c1f81a46f75f297e0753399b13cf810.tar.gz
drakx-backup-do-not-use-e24d09373c1f81a46f75f297e0753399b13cf810.tar.bz2
drakx-backup-do-not-use-e24d09373c1f81a46f75f297e0753399b13cf810.tar.xz
drakx-backup-do-not-use-e24d09373c1f81a46f75f297e0753399b13cf810.zip
This commit was manufactured by cvs2svn to create branch
'MDK-2006_0-update'.
Diffstat (limited to 'perl-install/fsedit.pm')
-rw-r--r--perl-install/fsedit.pm4
1 files changed, 2 insertions, 2 deletions
diff --git a/perl-install/fsedit.pm b/perl-install/fsedit.pm
index c06944a13..fd2119945 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 the LVM Logical Volume for mount point %s since it spans physical volumes", $mntpoint)
+ die N("You can not use a 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 the LVM Logical Volume as root (/).
+ cdie N("You've selected a 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);