onos-check-components 628 Bytes
#!/bin/bash
# -----------------------------------------------------------------------------
# Checks whether all ONOS components are either ACTIVE or DISABLED.
# -----------------------------------------------------------------------------

aux=/tmp/stc-$$.log
trap "rm -f $aux 2>/dev/null" EXIT

for attempt in {1..10}; do
    onos ${1:-$OCI} scr:list > $aux

    if grep -q UNSATISFIED $aux; then
        sleep 1
    else
        if [ -n "$2" ]; then
            echo "Searching for ACTIVE $2"
            egrep "ACTIVE.*$2" $aux && exit 0 || sleep 1
        else
            cat $aux &&  exit 0
        fi
    fi
done

exit 1