summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBernard Ogden <bernie.ogden@linaro.org>2015-05-08 12:32:14 +0100
committerBernard Ogden <bernie.ogden@linaro.org>2015-05-08 12:32:14 +0100
commitdcd577db12a2ae3ff6530e1b6c79f74274cec8ec (patch)
tree776acdb934eafefb1b5e3bea708540e1fc2e9c2d
parente573a7cdcfeb962759127cf0a740112acf996c4f (diff)
Don't report IP addresslog-based
-rwxr-xr-xinvoke_session_debian11
-rwxr-xr-xinvoke_session_oe11
2 files changed, 0 insertions, 22 deletions
diff --git a/invoke_session_debian b/invoke_session_debian
index 1650095..5357b4c 100755
--- a/invoke_session_debian
+++ b/invoke_session_debian
@@ -39,17 +39,6 @@ mkdir -p /run
mkdir -p /run/hacking
echo $$ > /run/hacking/hacking.pid
-#Sometimes we can't find the server straight away
-c=0
-while test $c -lt 6; do c=$((c+1)); sleep 10; ping -c 1 ${listener_addr} && break; done
-if test $? -ne 0; then
- echo "Failed to find controlling server, exiting"
- echo "<LAVA_TEST_RUNNER>: exiting"
- exit
-fi
-
-echo "root@${ip_addr}" | nc "${listener_addr}" "${listener_port}"
-
#suspend in a way that is portable across shells and doesn't involve a busy-wait
pid=
trap 'kill $pid
diff --git a/invoke_session_oe b/invoke_session_oe
index 7af91fb..398d8b1 100755
--- a/invoke_session_oe
+++ b/invoke_session_oe
@@ -47,17 +47,6 @@ mkdir -p /run
mkdir -p /run/hacking
echo $$ > /run/hacking/hacking.pid
-#Sometimes we can't find the server straight away
-c=0
-while test $c -lt 6; do c=$((c+1)); sleep 10; ping -c 1 ${listener_addr} && break; done
-if test $? -ne 0; then
- echo "Failed to find controlling server, exiting"
- echo "<LAVA_TEST_RUNNER>: exiting"
- exit
-fi
-
-echo "root@${ip_addr}" | nc "${listener_addr}" "${listener_port}"
-
#suspend in a way that is portable across shells and doesn't involve a busy-wait
pid=
trap 'kill $pid