From 1fae25c2a0b343d3488648ef45b793c3d649cbc2 Mon Sep 17 00:00:00 2001 From: Thierry Vignaud Date: Mon, 10 Dec 2012 14:06:55 +0000 Subject: (media_screen blacklist unwanted media instead of whitelisting wanted ones thus fixing dual cd where media names are not the regular ones --- perl-install/install/any.pm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'perl-install/install/any.pm') diff --git a/perl-install/install/any.pm b/perl-install/install/any.pm index 58afe29a0..26bbe9f0b 100644 --- a/perl-install/install/any.pm +++ b/perl-install/install/any.pm @@ -343,6 +343,7 @@ sub media_screen { # rpm -qa |grep tainted/non-free + check for kmod with firmwares # - use red color in that case (gtk+ version? interactive::gtk version?) # - present media as trees (eg 3 main branches (core/nonfree/tainted and sub medium below (release/updates/...) + # - use keywords (backports,testing,testing,sources) to blacklist my %descriptions = ( 'Core Release' => N("\"%s\" contains the various pieces of the systems and its applications", _core_medium()), 'Nonfree Release' => N("\"%s\" contains non free software.\n", _nonfree_medium()) . @@ -366,7 +367,7 @@ sub media_screen { disabled => sub { $medium->{name} eq 'Core Release' }, format => sub { $descriptions{$_[0]} || translate(%descriptions) }, }; - } grep { $_->{name} =~ /Release$|Updates$/ } @{$urpm->{media}}, + } grep { $_->{name} !~ /Debug|Testing|Sources|Backports/ } @{$urpm->{media}}, ]); -- cgit v1.2.1