also filter stderr and add hostname as prefix

Signed-off-by: Nico Schottelius <nico@kr.ethz.ch>
remotes/origin/archive_shell_function_approach
Nico Schottelius 14 years ago
parent df9bdef75e
commit dc820cf31e
  1. 4
      bin/cdist-mass-deploy

@ -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

Loading…
Cancel
Save