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
commit02206ce2d448b1e4e0d4d55c837b52a27b49885b (patch)
tree7fef7c215beaadeecb2426ccd3c8d91b830b2a21 /perl-install/fsedit.pm
parent83e53d9d1f7291e3e854860e11d15b8cc18ff1c2 (diff)
downloaddrakx-backup-do-not-use-02206ce2d448b1e4e0d4d55c837b52a27b49885b.tar
drakx-backup-do-not-use-02206ce2d448b1e4e0d4d55c837b52a27b49885b.tar.gz
drakx-backup-do-not-use-02206ce2d448b1e4e0d4d55c837b52a27b49885b.tar.bz2
drakx-backup-do-not-use-02206ce2d448b1e4e0d4d55c837b52a27b49885b.tar.xz
drakx-backup-do-not-use-02206ce2d448b1e4e0d4d55c837b52a27b49885b.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));