diff options
-rw-r--r-- | perl-install/install/NEWS | 2 | ||||
-rw-r--r-- | perl-install/install/steps_interactive.pm | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/perl-install/install/NEWS b/perl-install/install/NEWS index b5e16c744..542bdd969 100644 --- a/perl-install/install/NEWS +++ b/perl-install/install/NEWS @@ -2,6 +2,8 @@ o blacklist unwanted media instead of whitelisting wanted ones (fix dual cd where media names are not the regular ones) o no media is a critical error +- updates step: + o add all media instead of only update ones (mga#7959) Version 15.6 - 10 December 2012 diff --git a/perl-install/install/steps_interactive.pm b/perl-install/install/steps_interactive.pm index 142b87676..a0f2d203f 100644 --- a/perl-install/install/steps_interactive.pm +++ b/perl-install/install/steps_interactive.pm @@ -783,7 +783,7 @@ Do you want to install the updates?")), if (any::urpmi_add_all_media($o, $o->{previous_release})) { my $binary = find { whereis_binary($_, $::prefix) } 'gurpmi2', 'urpmi' or return; my $log_file = '/root/drakx/updates.log'; - run_program::rooted($::prefix, $binary, '>>', $log_file, '2>>', $log_file, '--auto-select', '--update'); + run_program::rooted($::prefix, $binary, '>>', $log_file, '2>>', $log_file, '--auto-select'); } install::pkgs::clean_rpmdb_shared_regions(); |