diff options
author | Dan Radez <dradez@redhat.com> | 2016-11-29 18:31:17 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@opnfv.org> | 2016-11-29 18:31:17 +0000 |
commit | 3e04f19de2010bebe68531d2de05227bffa53435 (patch) | |
tree | 087dc8c293343e5b20f7712f713ddf558818d82e | |
parent | 8804e06229a4df9387bafee5a2702cc738c58363 (diff) | |
parent | 0fdd203bbf0dcb8f2b2b5bc87fb0bf4db61d29cf (diff) |
Merge "Fix for baremetal deploy with new network settings format"
-rwxr-xr-x | lib/configure-deps-functions.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/configure-deps-functions.sh b/lib/configure-deps-functions.sh index 1d238f87..b9799969 100755 --- a/lib/configure-deps-functions.sh +++ b/lib/configure-deps-functions.sh @@ -75,7 +75,7 @@ EOF if [[ "$network" != "admin" && "$network" != "external" ]]; then continue fi - this_interface=$(eval echo \${${network}_bridged_interface}) + this_interface=$(eval echo \${${network}_installer_vm_members}) # check if this a bridged interface for this network if [[ ! -z "$this_interface" || "$this_interface" != "none" ]]; then if ! attach_interface_to_ovs ${NET_MAP[$network]} ${this_interface} ${network}; then |