diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2000-09-18 21:42:21 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2000-09-18 21:42:21 +0000 |
commit | d1f790931b430a7e632cac0b46313433fec7f998 (patch) | |
tree | acd811801c15446bdafd7f01b8753746d7f1de81 /perl-install/fsedit.pm | |
parent | ee9f3710e10dc30c02816097010c5a27868e33f5 (diff) | |
download | drakx-d1f790931b430a7e632cac0b46313433fec7f998.tar drakx-d1f790931b430a7e632cac0b46313433fec7f998.tar.gz drakx-d1f790931b430a7e632cac0b46313433fec7f998.tar.bz2 drakx-d1f790931b430a7e632cac0b46313433fec7f998.tar.xz drakx-d1f790931b430a7e632cac0b46313433fec7f998.zip |
no_comment
Diffstat (limited to 'perl-install/fsedit.pm')
-rw-r--r-- | perl-install/fsedit.pm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/perl-install/fsedit.pm b/perl-install/fsedit.pm index b301524f5..ea1c80a81 100644 --- a/perl-install/fsedit.pm +++ b/perl-install/fsedit.pm @@ -255,7 +255,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 "/" && isMDRAID($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)); + 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() =~ /i386/) { #- die "/boot ending on cylinder > 1024" if $mntpoint eq "/boot"; #- die "/ ending on cylinder > 1024" if $mntpoint eq "/" && !has_mntpoint("/boot", $hds); |