This is an automated email from the git hooks/post-receive script.
bernie.ogden pushed a commit to branch inserted_src in repository toolchain/semiautobench.
commit b3ea8788a1783685a523039eb3481d2a579c027e Author: Bernard Ogden bernie.ogden@linaro.org Date: Wed Jul 22 15:25:17 2015 +0200
Iterate through not-host, rather than target
Lets us work around a multinode limitation (cannot have different target types within a single role).
Change-Id: I4482e078702cc34e9558619f5be30aabd6ecc4ad --- invoke_session_debian | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/invoke_session_debian b/invoke_session_debian index d4b13b5..e860a67 100755 --- a/invoke_session_debian +++ b/invoke_session_debian @@ -92,7 +92,7 @@ lava-network collect eth0 echo WAITED > /dev/console cat /tmp/lava_multi_node_cache.txt target_names=() -for lava_name in `lava-group | grep '[[:blank:]]*target$' | awk '{print $1}'`; do +for lava_name in `lava-group | grep -v '[[:blank:]]*host$' | awk '{print $1}'`; do echo "NAME ${lava_name}" > /dev/console target_ip="$(lava-network query ${lava_name} ipv4)" if test $? -ne 0; then echo "Failed to find IP for ${lava_name}"; sleep infinity [...]