diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2008-10-20 08:20:33 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2008-10-20 08:20:33 +0000 |
commit | 793f8467e98a72dc89376643b6f0d4a51345805c (patch) | |
tree | 814df872510dfb1c7bf028b5f4897f6fc88ad0c5 | |
parent | d45c109c9150a453515522fab626fcc318ae36de (diff) | |
download | urpmi-793f8467e98a72dc89376643b6f0d4a51345805c.tar urpmi-793f8467e98a72dc89376643b6f0d4a51345805c.tar.gz urpmi-793f8467e98a72dc89376643b6f0d4a51345805c.tar.bz2 urpmi-793f8467e98a72dc89376643b6f0d4a51345805c.tar.xz urpmi-793f8467e98a72dc89376643b6f0d4a51345805c.zip |
- urpmi
o fix --auto-update ignoring --media and default-media (#45097)
-rw-r--r-- | NEWS | 2 | ||||
-rw-r--r-- | urpm/media.pm | 2 | ||||
-rwxr-xr-x | urpmi | 15 |
3 files changed, 4 insertions, 15 deletions
@@ -1,3 +1,5 @@ +- urpmi + o fix --auto-update ignoring --media and default-media (#45097) - gurpmi o display the download errors o log all urpmi logs diff --git a/urpm/media.pm b/urpm/media.pm index e0e3ca5a..1cf99072 100644 --- a/urpm/media.pm +++ b/urpm/media.pm @@ -641,7 +641,7 @@ sub _auto_update_media { $options{callback} = delete $options{download_callback}; my $errors; - foreach (grep { $_->{force_auto_update} || _is_remote_virtual($_) } + foreach (grep { $_->{force_auto_update} || _is_remote_virtual($_) || $urpm->{options}{'auto-update'} } non_ignored_media($urpm, $options{update})) { _update_medium($urpm, $_, %options) or $errors++; } @@ -345,20 +345,7 @@ if ($urpm->{root}) { $urpm->{options}{'priority-upgrade'} = '' if !$ENV{TESTING_priority_upgrade}; } if ($auto_update && !$bug && !$env) { - #- For translators : there are several media here - $urpm->{log}(N("Updating media...\n")); - urpm::media::read_config($urpm, ''); - urpm::media::update_media($urpm, - all => 1, - callback => \&urpm::download::sync_logger, - quiet => $options{verbose} < 0, - nomd5sum => $nomd5sum, - forcekey => $forcekey, - ); - delete $urpm->{media}; - $urpm->{depslist} = []; - $urpm->{provides} = {}; - $urpm->{obsoletes} = {}; + $urpm->{options}{'auto-update'} = 1; } urpm::media::configure($urpm, |