aboutsummaryrefslogtreecommitdiffstats
path: root/framework/src/onos/tools/test/bin/onos-wait-for-start
blob: e643b5a639e121fb244f07a6463de24838988469 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
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
"