summaryrefslogtreecommitdiffstats
path: root/perl-install/install/any.pm
diff options
context:
space:
mode:
authorPascal Rigaux <pixel@mandriva.com>2008-03-03 21:05:56 +0000
committerPascal Rigaux <pixel@mandriva.com>2008-03-03 21:05:56 +0000
commit06ee50b237dccb9411d589ddcb35ac2a8ca1771a (patch)
treedfe48392aa36f8896e4fd72f9833f6f11f358d37 /perl-install/install/any.pm
parentac510fc57c1dbd1e0b63b480bc8e8c340192a06d (diff)
downloaddrakx-backup-do-not-use-06ee50b237dccb9411d589ddcb35ac2a8ca1771a.tar
drakx-backup-do-not-use-06ee50b237dccb9411d589ddcb35ac2a8ca1771a.tar.gz
drakx-backup-do-not-use-06ee50b237dccb9411d589ddcb35ac2a8ca1771a.tar.bz2
drakx-backup-do-not-use-06ee50b237dccb9411d589ddcb35ac2a8ca1771a.tar.xz
drakx-backup-do-not-use-06ee50b237dccb9411d589ddcb35ac2a8ca1771a.zip
- use and install ntfs-3g by default for ntfs partitions (#37823)
Diffstat (limited to 'perl-install/install/any.pm')
-rw-r--r--perl-install/install/any.pm1
1 files changed, 1 insertions, 0 deletions
diff --git a/perl-install/install/any.pm b/perl-install/install/any.pm
index afc6cca74..7cf2de647 100644
--- a/perl-install/install/any.pm
+++ b/perl-install/install/any.pm
@@ -576,6 +576,7 @@ sub default_packages {
push @l, 'quota' if any { $_->{options} =~ /usrquota|grpquota/ } @{$o->{fstab}};
push @l, uniq(grep { $_ } map { fs::format::package_needed_for_partition_type($_) } @{$o->{fstab}});
+ push @l, 'ntfs-3g' if any { $_->{fs_type} eq 'ntfs-3g' } @{$o->{fstab}};
my @locale_pkgs = map { URPM::packages_providing($o->{packages}, 'locales-' . $_) } lang::langsLANGUAGE($o->{locale}{langs});
unshift @l, uniq(map { $_->name } @locale_pkgs);