From c12f436ad4dfc6b721a8e4bc9bcd2987c5b30f63 Mon Sep 17 00:00:00 2001 From: Thierry Vignaud Date: Sat, 7 Apr 2012 19:43:16 +0000 Subject: (default_packages) install btrfs-progs if needed (mga#5274) --- perl-install/install/any.pm | 1 + 1 file changed, 1 insertion(+) (limited to 'perl-install/install/any.pm') diff --git a/perl-install/install/any.pm b/perl-install/install/any.pm index 957b57f30..fbdc1b3b3 100644 --- a/perl-install/install/any.pm +++ b/perl-install/install/any.pm @@ -579,6 +579,7 @@ sub default_packages { @ltmp = uniq(grep { $_ } map { fs::format::package_needed_for_partition_type($_) } @{$o->{fstab}}); add_n_log("needed by some fs", @ltmp) if @ltmp; add_n_log("some fs is NTFS-3G", 'ntfs-3g') if any { $_->{fs_type} eq 'ntfs-3g' } @{$o->{fstab}}; + add_n_log("some fs is btrfs", 'btrfs-progs') if any { $_->{fs_type} eq 'btrfs' } @{$o->{fstab}}; # handle locales with specified scripting: my @languages = map { s/\@.*//; $_ } lang::langsLANGUAGE($o->{locale}{langs}); -- cgit v1.2.1