onos/tools/test/bin/onos-wait-for-start
Pavlin Radoslavov 91413794ef Minor cleanup in some of the shell scripts in the "tools" directory.
No functional changes.

 * Description header formatting
 * Added missing new line at the end of a file
 * Removed extra new lines at the end of a file
2014-10-15 11:03:54 -07:00

20 lines
623 B
Bash
Executable File

#!/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
remote=$ONOS_USER@${1:-$OCI}
ssh $remote "
# Wait until we reach the run-level 100
running=""
while [ -z \$running ]; do
$ONOS_INSTALL_DIR/bin/onos bundle:list 2>/dev/null | \
grep -q 'START LEVEL 100' && running=1 || sleep 2
done
"