also filter stderr and add hostname as prefix

Signed-off-by: Nico Schottelius <nico@kr.ethz.ch>
This commit is contained in:
Nico Schottelius 2011-07-28 10:54:39 +02:00
parent df9bdef75e
commit dc820cf31e
1 changed files with 2 additions and 2 deletions

View File

@ -42,13 +42,13 @@ fi
i=0
while [ $# -gt 0 ]; do
if [ "$parallel" ]; then
cdist-deploy-to "$1" | filter "$1" &
cdist-deploy-to "$1" 2>&1 | filter "$1" &
# Record pid and host for use later
i=$((i+1))
eval pid_$i=$!
eval host_$i=\$1
else
cdist-deploy-to "$1" | filter "$1"
cdist-deploy-to "$1" 2>&1 | filter "$1"
fi
shift
done