diff options
Diffstat (limited to 'urpm')
-rw-r--r-- | urpm/parallel_ka_run.pm | 2 | ||||
-rw-r--r-- | urpm/parallel_ssh.pm | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/urpm/parallel_ka_run.pm b/urpm/parallel_ka_run.pm index 10f29d66..7c43b34d 100644 --- a/urpm/parallel_ka_run.pm +++ b/urpm/parallel_ka_run.pm @@ -106,7 +106,7 @@ sub parallel_install { /^\s*$/ and next; $bad_nodes{$node} .= $_; /Installation failed/ and $bad_nodes{$node} = ''; - /Installation is possible/ and delete $bad_nodes{$node}; + /Installation is possible|everything already installed/ and delete $bad_nodes{$node}; } close F or $urpm->{fatal}(1, _("rshp failed")); diff --git a/urpm/parallel_ssh.pm b/urpm/parallel_ssh.pm index 9cc0198a..e376b8f8 100644 --- a/urpm/parallel_ssh.pm +++ b/urpm/parallel_ssh.pm @@ -108,7 +108,7 @@ sub parallel_install { while ($_ = <F>) { $bad_nodes{$node} .= $_; /Installation failed/ and $bad_nodes{$node} = ''; - /Installation is possible/ and delete $bad_nodes{$node}, last; + /Installation is possible|everything already installed/ and delete $bad_nodes{$node}, last; } close F; } |