summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
Diffstat (limited to 'tests')
-rw-r--r--tests/utils/cloudify-setup.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/utils/cloudify-setup.sh b/tests/utils/cloudify-setup.sh
index 2128c77..a5cb60d 100644
--- a/tests/utils/cloudify-setup.sh
+++ b/tests/utils/cloudify-setup.sh
@@ -28,10 +28,10 @@
function get_external_net () {
LINE=4
ID=$(openstack network list | awk "NR==$LINE{print \$2}")
- while [[ $ID ]]
+ while [[ $ID ]]
do
if [[ $(openstack network show $ID | awk "/ router:external / { print \$4 }") == "True" ]]; then break; fi
- let ID=$ID+1
+ ((ID+=1))
done
if [[ $ID ]]; then
EXTERNAL_NETWORK_NAME=$(openstack network show $ID | awk "/ name / { print \$4 }")