diff options
-rw-r--r-- | urpm/parallel_ssh.pm | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/urpm/parallel_ssh.pm b/urpm/parallel_ssh.pm index 19ea8b2d..cfffe0c2 100644 --- a/urpm/parallel_ssh.pm +++ b/urpm/parallel_ssh.pm @@ -90,6 +90,7 @@ sub parallel_install { my %bad_nodes; $parallel->urpm_popen($urpm, 'urpmi', "--pre-clean --test --no-verify-rpm --auto --synthesis $parallel->{synthesis} $parallel->{line}", sub { my ($node, $s) = @_; + $s =~ /^\s*$/ and return; $bad_nodes{$node} .= $s; $s =~ /Installation failed/ and $bad_nodes{$node} = ''; $s =~ /Installation is possible/ and delete $bad_nodes{$node}, return 1; |