summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--perl-install/fsedit.pm4
-rw-r--r--perl-install/lvm.pm2
2 files changed, 3 insertions, 3 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);
diff --git a/perl-install/lvm.pm b/perl-install/lvm.pm
index 05beddc19..018811ea1 100644
--- a/perl-install/lvm.pm
+++ b/perl-install/lvm.pm
@@ -175,7 +175,7 @@ sub lv_create {
if ($lv->{mntpoint} eq '/boot' && lv_nb_pvs($lv) > 1) {
lvm_cmd_or_die('lvremove', '-f', "/dev/$lv->{device}");
- die N("The bootloader can't handle /boot on multiple physicals volumes");
+ die N("The bootloader can't handle /boot on multiple physical volumes");
}
$lv->{size} = get_lv_size($lv->{device}); #- the created size is smaller than asked size