summaryrefslogtreecommitdiffstats
path: root/perl-install/fsedit.pm
diff options
context:
space:
mode:
authorStefan Siegel <siegel@linux-mandrake.com>2000-05-07 21:50:47 +0000
committerStefan Siegel <siegel@linux-mandrake.com>2000-05-07 21:50:47 +0000
commit7924664b6dd5f14f8b73b4e95ba59b8c736f097e (patch)
tree076945c1fd2b92295f9572e0a8f206f14affbe29 /perl-install/fsedit.pm
parent73053fb0bb6255c13deecd198499cfc4479134bc (diff)
downloaddrakx-backup-do-not-use-7924664b6dd5f14f8b73b4e95ba59b8c736f097e.tar
drakx-backup-do-not-use-7924664b6dd5f14f8b73b4e95ba59b8c736f097e.tar.gz
drakx-backup-do-not-use-7924664b6dd5f14f8b73b4e95ba59b8c736f097e.tar.bz2
drakx-backup-do-not-use-7924664b6dd5f14f8b73b4e95ba59b8c736f097e.tar.xz
drakx-backup-do-not-use-7924664b6dd5f14f8b73b4e95ba59b8c736f097e.zip
fixed awfull typo
Diffstat (limited to 'perl-install/fsedit.pm')
-rw-r--r--perl-install/fsedit.pm3
1 files changed, 2 insertions, 1 deletions
diff --git a/perl-install/fsedit.pm b/perl-install/fsedit.pm
index f66a3488b..eb19b2bbb 100644
--- a/perl-install/fsedit.pm
+++ b/perl-install/fsedit.pm
@@ -270,7 +270,8 @@ sub check_mntpoint {
$check->($fake_part) unless $mntpoint eq '/' && $loopbackDevice; #- '/' is a special case, no loop check
die "raid / with no /boot" if $mntpoint eq "/" && raid::is($part) && !has_mntpoint("/boot", $hds);
- die _("You need a true filesystem (ext2, reiserfs) for this mount point\n") if !isTrueFS($part) && member($mntpoint, qw(/ /usr));
+ # Linux file system needet to be able to make devices
+ die _("You need a true Linux filesystem (ext2, reiserfs) for this mount point\n") if !isTrueFS($part) && member($mntpoint, qw(/ /usr));
#- if ($part->{start} + $part->{size} > 1024 * $hd->cylinder_size() && arch() =~ /i386/) {
#- die "/boot ending on cylinder > 1024" if $mntpoint eq "/boot";
#- die "/ ending on cylinder > 1024" if $mntpoint eq "/" && !has_mntpoint("/boot", $hds);