diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2000-09-16 22:00:54 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2000-09-16 22:00:54 +0000 |
commit | a8b73def5ea962a0438c9b3058b626630dbe444c (patch) | |
tree | b13f07cc1612dfc90238bec521ad08c2705ca012 /perl-install/install_steps.pm | |
parent | cbbd8617c7756c82b57544add01c777501ed944e (diff) | |
download | drakx-a8b73def5ea962a0438c9b3058b626630dbe444c.tar drakx-a8b73def5ea962a0438c9b3058b626630dbe444c.tar.gz drakx-a8b73def5ea962a0438c9b3058b626630dbe444c.tar.bz2 drakx-a8b73def5ea962a0438c9b3058b626630dbe444c.tar.xz drakx-a8b73def5ea962a0438c9b3058b626630dbe444c.zip |
no_comment
Diffstat (limited to 'perl-install/install_steps.pm')
-rw-r--r-- | perl-install/install_steps.pm | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/perl-install/install_steps.pm b/perl-install/install_steps.pm index 61c3efcec..300a06ecb 100644 --- a/perl-install/install_steps.pm +++ b/perl-install/install_steps.pm @@ -181,9 +181,6 @@ sub ask_mntpoint_s { #- TODO: set the mntpoints - #- assure type is at least ext2 - (fsedit::get_root($fstab) || {})->{type} = 0x83; - my %m; foreach (@$fstab) { my $m = $_->{mntpoint}; @@ -193,7 +190,7 @@ sub ask_mntpoint_s { $m{$m} = 1; #- in case the type does not correspond, force it to ext2 - $_->{type} = 0x83 if $m =~ m|^/| && !isFat($_); + $_->{type} = 0x83 if $m =~ m|^/| && !isFat($_) && !isTrueFS($_); } 1; } |