mirror of
https://github.com/opennetworkinglab/onos.git
synced 2025-10-29 15:21:52 +01:00
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
20 lines
623 B
Bash
Executable File
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
|
|
|
|
"
|