blob: e61993771c6748ff66becb70ee7c0ee00af405ea [file] [log] [blame]
#!/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..30}; 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