diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2000-09-13 13:30:37 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2000-09-13 13:30:37 +0000 |
commit | 5ad0ed55d7a51db8301f44ed2bafdd48c0682e4c (patch) | |
tree | bd51eab841234881b3a8923aa21f63909dc0bb00 /perl-install/fsedit.pm | |
parent | b95c12f4cff7dc36b247391348d2781e70fad29c (diff) | |
download | drakx-5ad0ed55d7a51db8301f44ed2bafdd48c0682e4c.tar drakx-5ad0ed55d7a51db8301f44ed2bafdd48c0682e4c.tar.gz drakx-5ad0ed55d7a51db8301f44ed2bafdd48c0682e4c.tar.bz2 drakx-5ad0ed55d7a51db8301f44ed2bafdd48c0682e4c.tar.xz drakx-5ad0ed55d7a51db8301f44ed2bafdd48c0682e4c.zip |
no_comment
Diffstat (limited to 'perl-install/fsedit.pm')
-rw-r--r-- | perl-install/fsedit.pm | 11 |
1 files changed, 2 insertions, 9 deletions
diff --git a/perl-install/fsedit.pm b/perl-install/fsedit.pm index a868493f4..72a96cfd9 100644 --- a/perl-install/fsedit.pm +++ b/perl-install/fsedit.pm @@ -14,9 +14,8 @@ use Data::Dumper; use fsedit; use devices; use loopback; -use raid; -use fs; use log; +use fs; #-##################################################################################### #- Globals @@ -110,12 +109,6 @@ sub free_space { sum map { $_->{size} } map { partition_table::get_holes($_) } @_; } -sub hasRAID { - my $b = 0; - map { $b ||= isRAID($_) } get_fstab(@_); - $b; -} - sub is_one_big_fat { my ($hds) = @_; @$hds == 1 or return; @@ -261,7 +254,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 "/" && raid::is($part) && !has_mntpoint("/boot", $hds); + 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)); #- if ($part->{start} + $part->{size} > 1024 * $hd->cylinder_size() && arch() =~ /i386/) { #- die "/boot ending on cylinder > 1024" if $mntpoint eq "/boot"; |