summaryrefslogtreecommitdiffstats
path: root/perl-install/fsedit.pm
diff options
context:
space:
mode:
authorAhmad Samir <ahmad@mageia.org>2011-04-04 18:59:21 +0000
committerAhmad Samir <ahmad@mageia.org>2011-04-04 18:59:21 +0000
commitc17fbf2a4f83f6192453e947733c22c2af3501bf (patch)
tree7fef7c215beaadeecb2426ccd3c8d91b830b2a21 /perl-install/fsedit.pm
parent1391b5f911e249b4db17a8add90e78f06fc8ecbe (diff)
downloaddrakx-c17fbf2a4f83f6192453e947733c22c2af3501bf.tar
drakx-c17fbf2a4f83f6192453e947733c22c2af3501bf.tar.gz
drakx-c17fbf2a4f83f6192453e947733c22c2af3501bf.tar.bz2
drakx-c17fbf2a4f83f6192453e947733c22c2af3501bf.tar.xz
drakx-c17fbf2a4f83f6192453e947733c22c2af3501bf.zip
- string changes: perl -pi -e 's!/boot partition!separate /boot partition!'
Diffstat (limited to 'perl-install/fsedit.pm')
-rw-r--r--perl-install/fsedit.pm8
1 files changed, 4 insertions, 4 deletions
diff --git a/perl-install/fsedit.pm b/perl-install/fsedit.pm
index f6e6843bb..5eb5e153c 100644
--- a/perl-install/fsedit.pm
+++ b/perl-install/fsedit.pm
@@ -433,11 +433,11 @@ sub check_mntpoint {
if ($part->{level} ne '1') {
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");
+Please be sure to add a separate /boot partition");
} else {
# LILO only handles 0.90 metadata
if ($part->{isFormatted} && $part->{metadata} && $part->{metadata} ne '0.90') {
- cdie N("Metadata version unsupported for a boot partition. Please be sure to add a /boot partition.");
+ cdie N("Metadata version unsupported for a boot partition. Please be sure to add a separate /boot partition.");
} else {
$part->{metadata} = '0.90';
}
@@ -458,7 +458,7 @@ No bootloader is able to handle this.") if $part->{level} ne '1'; # lilo handles
if ($mntpoint eq "/" && (isLUKS($part) || isRawLUKS($part)) && !fs::get::has_mntpoint("/boot", $all_hds)) {
cdie N("You've selected an encrypted partition as root (/).
No bootloader is able to handle this without a /boot partition.
-Please be sure to add a /boot partition");
+Please be sure to add a separate /boot partition");
}
if ($mntpoint eq "/boot" && (isLUKS($part) || isRawLUKS($part))) {
@@ -470,7 +470,7 @@ Please be sure to add a /boot partition");
if $mntpoint eq '/boot' && isLVM($part) && lvm::lv_nb_pvs($part) > 1;
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);
+You should create a separate /boot partition first") if $mntpoint eq "/" && isLVM($part) && lvm::lv_nb_pvs($part) != 1 && !fs::get::has_mntpoint("/boot", $all_hds);
cdie N("This directory should remain within the root filesystem")
if member($mntpoint, qw(/root));