diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2008-03-03 21:05:56 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2008-03-03 21:05:56 +0000 |
commit | 06ee50b237dccb9411d589ddcb35ac2a8ca1771a (patch) | |
tree | dfe48392aa36f8896e4fd72f9833f6f11f358d37 /perl-install/install | |
parent | ac510fc57c1dbd1e0b63b480bc8e8c340192a06d (diff) | |
download | drakx-06ee50b237dccb9411d589ddcb35ac2a8ca1771a.tar drakx-06ee50b237dccb9411d589ddcb35ac2a8ca1771a.tar.gz drakx-06ee50b237dccb9411d589ddcb35ac2a8ca1771a.tar.bz2 drakx-06ee50b237dccb9411d589ddcb35ac2a8ca1771a.tar.xz drakx-06ee50b237dccb9411d589ddcb35ac2a8ca1771a.zip |
- use and install ntfs-3g by default for ntfs partitions (#37823)
Diffstat (limited to 'perl-install/install')
-rw-r--r-- | perl-install/install/NEWS | 1 | ||||
-rw-r--r-- | perl-install/install/any.pm | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/perl-install/install/NEWS b/perl-install/install/NEWS index b4d618471..1bc223dff 100644 --- a/perl-install/install/NEWS +++ b/perl-install/install/NEWS @@ -2,6 +2,7 @@ Core by the way) - auto allocate: do not create /home if drive is smaller than 7GB - do not propose to deselect media if none can be deselected +- use and install ntfs-3g by default for ntfs partitions (#37823) Version 10.6.25 - 28 February 2008 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); |