diff options
-rw-r--r-- | NEWS | 1 | ||||
-rw-r--r-- | urpm/parallel.pm | 2 |
2 files changed, 2 insertions, 1 deletions
@@ -6,6 +6,7 @@ o handle README.urpmi in utf8 (but not other encodings) (#41553) o handle --debug-librpm o fix --parallel on local media (ie when synthesis.cz is not copied to /var/lib/urpmi) + o fix --parallel --auto-select when one box is up-to-date but not the others (#41924) - urpmi.addmedia: o make --mirrorlist with no url equivalent to --mirrorlist '$MIRRORLIST' (#40283) o --interactive: fix selecting "noauto" media (#39522) diff --git a/urpm/parallel.pm b/urpm/parallel.pm index 4c44c55d..28eb1c9a 100644 --- a/urpm/parallel.pm +++ b/urpm/parallel.pm @@ -283,7 +283,7 @@ sub parallel_install { $s =~ /^\s*$/ and return; $bad_nodes{$node} .= "$s\n"; $s =~ /Installation failed/ and $bad_nodes{$node} = ''; - $s =~ /Installation is possible/ and push @good_nodes, $node; + $s =~ /Installation is possible|Packages are up to date/ and push @good_nodes, $node; undef; }); delete $bad_nodes{$_} foreach @good_nodes; |