diff options
author | Thierry Vignaud <tvignaud@mandriva.org> | 2005-02-09 11:38:16 +0000 |
---|---|---|
committer | Thierry Vignaud <tvignaud@mandriva.org> | 2005-02-09 11:38:16 +0000 |
commit | 774697aaa88ccf7f5f220e9b3f23ce081b6377f5 (patch) | |
tree | bb96dd8c5a7e6f8bc9f6c2d73b50e6dcf405b39f /perl-install | |
parent | 80cdd1b5860d69c32447674496cee00dd909a9b7 (diff) | |
download | drakx-774697aaa88ccf7f5f220e9b3f23ce081b6377f5.tar drakx-774697aaa88ccf7f5f220e9b3f23ce081b6377f5.tar.gz drakx-774697aaa88ccf7f5f220e9b3f23ce081b6377f5.tar.bz2 drakx-774697aaa88ccf7f5f220e9b3f23ce081b6377f5.tar.xz drakx-774697aaa88ccf7f5f220e9b3f23ce081b6377f5.zip |
(mount) let's support ntfs and reorder fs list btw (#3653)
Diffstat (limited to 'perl-install')
-rw-r--r-- | perl-install/fs.pm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/perl-install/fs.pm b/perl-install/fs.pm index 3f4020946..1d16a3e9c 100644 --- a/perl-install/fs.pm +++ b/perl-install/fs.pm @@ -481,9 +481,9 @@ sub mount { $fs or log::l("not mounting $dev partition"), return; - my @fs_modules = qw(vfat hfs romfs ufs reiserfs xfs jfs ext3); + my @fs_modules = qw(ext3 hfs jfs ntfs romfs reiserfs ufs xfs vfat); - if (member($fs, 'smb', 'smbfs', 'nfs', 'davfs', 'ntfs') && $::isStandalone || $::move) { + if (member($fs, 'smb', 'smbfs', 'nfs', 'davfs') && $::isStandalone || $::move) { $o_wait_message->(N("Mounting partition %s", $dev)) if $o_wait_message; system('mount', '-t', $fs, $dev, $where, if_($o_options, '-o', $o_options)) == 0 or die N("mounting partition %s in directory %s failed", $dev, $where); } else { |