From b8a0c47a789b3bec3ab73821bbbf2ae6bb41757f Mon Sep 17 00:00:00 2001 From: Kyr Shatskyy Date: Fri, 5 Oct 2018 14:22:17 +0200 Subject: [PATCH] Fix ovh paddles populate Unfortunate typo instroduced in sha1 e491969d4b5b9dca710d1ce89f0cde918bbee1b4 which fixed ECP nodes creation and broke OVH nodes creation. --- teuthology/openstack/setup-openstack.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/teuthology/openstack/setup-openstack.sh b/teuthology/openstack/setup-openstack.sh index 097a7ade3f..8b80f01a37 100755 --- a/teuthology/openstack/setup-openstack.sh +++ b/teuthology/openstack/setup-openstack.sh @@ -698,7 +698,7 @@ function main() { # # assume the first available IPv4 subnet is going to be used to assign IP to the instance # - [ -z network ] && { + [ -z "$network" ] && { local default_subnets=$(openstack subnet list --ip-version 4 -f json | jq -r '.[] | .Subnet' | sort | uniq) } || { local network_id=$(openstack network list -f json | jq -r ".[] | select(.Name == \"$network\") | .ID") -- 2.39.5