diff options
author | Francois Pons <fpons@mandriva.com> | 2003-07-29 13:42:53 +0000 |
---|---|---|
committer | Francois Pons <fpons@mandriva.com> | 2003-07-29 13:42:53 +0000 |
commit | 8595770987b0cd225390a2181b7cdd7c6577a171 (patch) | |
tree | 581189f64858d44bb51a6a6f67dbcc01afe5abd8 /urpm | |
parent | 2ee11126bb08fa5a0eeaf07372633c209246386d (diff) | |
download | urpmi-8595770987b0cd225390a2181b7cdd7c6577a171.tar urpmi-8595770987b0cd225390a2181b7cdd7c6577a171.tar.gz urpmi-8595770987b0cd225390a2181b7cdd7c6577a171.tar.bz2 urpmi-8595770987b0cd225390a2181b7cdd7c6577a171.tar.xz urpmi-8595770987b0cd225390a2181b7cdd7c6577a171.zip |
make sure stdout is read from distant nodes for parallel remove.
Diffstat (limited to 'urpm')
-rw-r--r-- | urpm/parallel_ka_run.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/urpm/parallel_ka_run.pm b/urpm/parallel_ka_run.pm index 03dcc1e4..cdc43ffc 100644 --- a/urpm/parallel_ka_run.pm +++ b/urpm/parallel_ka_run.pm @@ -36,7 +36,7 @@ sub parallel_find_remove { #- now try an iteration of urpmq. $urpm->{log}("parallel_ka_run: rshp -v $parallel->{options} -- urpme --no-locales --auto $test".(join ' ', map { "'$_'" } @$l)); - open F, "rshp -v $parallel->{options} -- urpme --no-locales --auto $test".join(' ', map { "'$_'" } @$l)." |"; + open F, "rshp -v $parallel->{options} -- urpme --no-locales --auto $test".join(' ', map { "'$_'" } @$l)." 2>&1 |"; while (defined ($_ = <F>)) { chomp; s/<([^>]*)>.*:->:(.*)/$2/ and $node = $1; |