Fail bootstrap immediately if no topology found
[csit.git] / bootstrap-verify-perf-ligato.sh
index b704bfd..1ab881b 100644 (file)
@@ -147,6 +147,10 @@ virtualenv --system-site-packages env
 echo pip install
 pip install -r requirements.txt
 
+if [ -z "${TOPOLOGIES}" ]; then
+    echo "No applicable topology found!"
+    exit 1
+fi
 # We iterate over available topologies and wait until we reserve topology
 while :; do
     for TOPOLOGY in ${TOPOLOGIES};