diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2008-02-27 10:46:40 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2008-02-27 10:46:40 +0000 |
commit | fa9c6fa00bffb310d3358a8ea63c6566acf924e9 (patch) | |
tree | 9ffa2f1984dad08fc47b94840afde8a85e23cccb /urpm/removable.pm | |
parent | 6177d90a2ada2717c8d0aed687dbbdc5cad6c5dd (diff) | |
download | urpmi-fa9c6fa00bffb310d3358a8ea63c6566acf924e9.tar urpmi-fa9c6fa00bffb310d3358a8ea63c6566acf924e9.tar.gz urpmi-fa9c6fa00bffb310d3358a8ea63c6566acf924e9.tar.bz2 urpmi-fa9c6fa00bffb310d3358a8ea63c6566acf924e9.tar.xz urpmi-fa9c6fa00bffb310d3358a8ea63c6566acf924e9.zip |
use blists to ensure we only mount media which will be used
Diffstat (limited to 'urpm/removable.pm')
-rw-r--r-- | urpm/removable.pm | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/urpm/removable.pm b/urpm/removable.pm index bb10c14b..71e8c0ff 100644 --- a/urpm/removable.pm +++ b/urpm/removable.pm @@ -218,9 +218,11 @@ sub _examine_removable_medium_ { #- side-effects: #- + those of try_mounting_ ($urpm->{removable_mounted}, "mount") sub try_mounting_non_removable { - my ($urpm) = @_; + my ($urpm, $list) = @_; + + my @used_media = map { $_->{medium} } _create_blists($urpm->{media}, $list); - foreach my $medium (grep { !$_->{removable} } @{$urpm->{media}}) { + foreach my $medium (grep { !$_->{removable} } @used_media) { my $dir = file_from_local_url($medium->{url}) or next; -e $dir || try_mounting_($urpm, $dir) or |