From 13d05bc8458758ee39cb829098241e89616717ee Mon Sep 17 00:00:00 2001 From: Ashlee Young Date: Wed, 9 Sep 2015 22:15:21 -0700 Subject: ONOS checkin based on commit tag e796610b1f721d02f9b0e213cf6f7790c10ecd60 Change-Id: Ife8810491034fe7becdba75dda20de4267bd15cd --- .../src/onos/tools/test/bin/onos-wait-for-start | 28 ++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100755 framework/src/onos/tools/test/bin/onos-wait-for-start (limited to 'framework/src/onos/tools/test/bin/onos-wait-for-start') diff --git a/framework/src/onos/tools/test/bin/onos-wait-for-start b/framework/src/onos/tools/test/bin/onos-wait-for-start new file mode 100755 index 00000000..e643b5a6 --- /dev/null +++ b/framework/src/onos/tools/test/bin/onos-wait-for-start @@ -0,0 +1,28 @@ +#!/bin/bash +# ----------------------------------------------------------------------------- +# Waits for ONOS to reach run-level 100 on the specified remote node. +# ----------------------------------------------------------------------------- + +[ ! -d "$ONOS_ROOT" ] && echo "ONOS_ROOT is not defined" >&2 && exit 1 +. $ONOS_ROOT/tools/build/envDefaults +. $ONOS_ROOT/tools/test/bin/find-node.sh + +node=$(find_node ${1:-$OCI}) + +remote=$ONOS_USER@$node + +ssh -t $remote " + # Wait until we reach the run-level 100 + for i in \$(seq 1 45); do + $ONOS_INSTALL_DIR/bin/onos bundle:list 2>/dev/null | \ + grep -q 'START LEVEL 100' && break || sleep 2 + done + + # Wait until ApplicationManager is available + for i in \$(seq 1 10); do + grep -q \" ApplicationManager .* Started\" \ + $ONOS_INSTALL_DIR/log/karaf.log && break || sleep 1 + done + + grep -q \" ApplicationManager .* Started\" $ONOS_INSTALL_DIR/log/karaf.log +" -- cgit 1.2.3-korg