diff options
author | Thierry Vignaud <tv@mandriva.org> | 2009-03-19 15:01:08 +0000 |
---|---|---|
committer | Thierry Vignaud <tv@mandriva.org> | 2009-03-19 15:01:08 +0000 |
commit | 756884aee7c109d8c09a5addc7d74a933333a053 (patch) | |
tree | b7fdde552110d5ea5241955e36a281618c2b3e12 | |
parent | f6c7e908aeb5e9833c58b21b63b26e0330d701fa (diff) | |
download | mgaonline-756884aee7c109d8c09a5addc7d74a933333a053.tar mgaonline-756884aee7c109d8c09a5addc7d74a933333a053.tar.gz mgaonline-756884aee7c109d8c09a5addc7d74a933333a053.tar.bz2 mgaonline-756884aee7c109d8c09a5addc7d74a933333a053.tar.xz mgaonline-756884aee7c109d8c09a5addc7d74a933333a053.zip |
(silentCheck) consider all media as update media on cooker when checking if there are media
-rw-r--r-- | NEWS | 3 | ||||
-rwxr-xr-x | mdkapplet | 2 |
2 files changed, 4 insertions, 1 deletions
@@ -1,3 +1,6 @@ +- mdkapplet + o update all media on cooker instead of only update media + Version 2.74 - 16 February 2008 - mdkapplet-config @@ -510,7 +510,7 @@ sub silentCheck() { require urpm::media; # this eats 52Mb of RAM on 64bit: urpm::media::configure($urpm, update => 1); - my @update_medias = grep { $_->{update} } @{$urpm->{media}}; + my @update_medias = get_update_medias($urpm); if (!@update_medias) { checker_exit('no_update_medium'); } elsif (!any { ! $_->{ignore} } @update_medias) { |