summaryrefslogtreecommitdiffstats
path: root/perl-install/fs.pm
diff options
context:
space:
mode:
authorPascal Rigaux <pixel@mandriva.com>2002-06-19 16:41:27 +0000
committerPascal Rigaux <pixel@mandriva.com>2002-06-19 16:41:27 +0000
commit75f1a4936bcae5885c98c28c569985d29b1e9bb6 (patch)
tree5b2fb38c004f25e797a3aa20a57bd0f32fdcfc04 /perl-install/fs.pm
parent8066ef5496684f784bb4468bcce661dadc629dd4 (diff)
downloaddrakx-backup-do-not-use-75f1a4936bcae5885c98c28c569985d29b1e9bb6.tar
drakx-backup-do-not-use-75f1a4936bcae5885c98c28c569985d29b1e9bb6.tar.gz
drakx-backup-do-not-use-75f1a4936bcae5885c98c28c569985d29b1e9bb6.tar.bz2
drakx-backup-do-not-use-75f1a4936bcae5885c98c28c569985d29b1e9bb6.tar.xz
drakx-backup-do-not-use-75f1a4936bcae5885c98c28c569985d29b1e9bb6.zip
mounting of ntfs after install really mount the partition (thanks to Buchan Milne)
Diffstat (limited to 'perl-install/fs.pm')
-rw-r--r--perl-install/fs.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/fs.pm b/perl-install/fs.pm
index d7588ad97..53c729aa3 100644
--- a/perl-install/fs.pm
+++ b/perl-install/fs.pm
@@ -616,7 +616,7 @@ sub mount {
my @fs_modules = qw(vfat hfs romfs ufs reiserfs xfs jfs ext3);
- if (member($fs, 'smb', 'smbfs', 'nfs') && $::isStandalone) {
+ if (member($fs, 'smb', 'smbfs', 'nfs', 'ntfs') && $::isStandalone) {
system('mount', '-t', $fs, $dev, $where, '-o', $options) == 0 or die _("mounting partition %s in directory %s failed", $dev, $where);
return; #- do not update mtab, already done by mount(8)
} elsif (member($fs, 'ext2', 'proc', 'usbdevfs', 'iso9660', @fs_modules)) {