diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2001-03-07 10:17:49 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2001-03-07 10:17:49 +0000 |
commit | c65db474bc7818522211c4517061e8df2baea363 (patch) | |
tree | 5ec50f5e1baf12845510c71bc79488ce814e504a /perl-install | |
parent | 54c3961e4267fa1ad62d537990262730105f726e (diff) | |
download | drakx-backup-do-not-use-c65db474bc7818522211c4517061e8df2baea363.tar drakx-backup-do-not-use-c65db474bc7818522211c4517061e8df2baea363.tar.gz drakx-backup-do-not-use-c65db474bc7818522211c4517061e8df2baea363.tar.bz2 drakx-backup-do-not-use-c65db474bc7818522211c4517061e8df2baea363.tar.xz drakx-backup-do-not-use-c65db474bc7818522211c4517061e8df2baea363.zip |
fix typo
Diffstat (limited to 'perl-install')
-rw-r--r-- | perl-install/fsedit.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/fsedit.pm b/perl-install/fsedit.pm index e936d71c6..fe5fcc0ab 100644 --- a/perl-install/fsedit.pm +++ b/perl-install/fsedit.pm @@ -281,7 +281,7 @@ 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 "/" && isMDRAID($part) && !has_mntpoint("/boot", $hds); - die _("You can't use a LVM Logical Volume for mount point %s", $mntpoint) if ($mntpoint eq '/' || $mntpoint '/boot') && isLVMBased($hd); + die _("You can't use a LVM Logical Volume for mount point %s", $mntpoint) if ($mntpoint eq '/' || $mntpoint eq '/boot') && isLVMBased($hd); die _("This directory should remain within the root filesystem") if member($mntpoint, qw(/bin /dev /etc /lib /sbin)); die _("You need a true filesystem (ext2, reiserfs) for this mount point\n") if !isTrueFS($part) && member($mntpoint, qw(/ /home /tmp /usr /var)); #- if ($part->{start} + $part->{size} > 1024 * $hd->cylinder_size() && arch() =~ /i.86/) { |