diff options
author | Dan Radez <dradez@redhat.com> | 2016-01-04 15:49:26 -0500 |
---|---|---|
committer | Dan Radez <dradez@redhat.com> | 2016-03-23 08:34:22 -0400 |
commit | a90fc16a988cd5eb53de383d0830648f758edaff (patch) | |
tree | 6c970db294a49b980cda179ab7930e4ee4c2919a /lib/installer/onos | |
parent | 67566f2f8c700f8c4b78bfac557f70721a243834 (diff) |
updating vm creation for virt deployment
- replacing brbm with logical names br-netname
- replacing instack-virt-setup with tripleo scripts
JIRA: APEX-90, APEX-80
Change-Id: I58a15dee8de882e034c8af8a3368ca0647741b13
Signed-off-by: Dan Radez <dradez@redhat.com>
Diffstat (limited to 'lib/installer/onos')
-rw-r--r-- | lib/installer/onos/onos_gw_mac_update.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/installer/onos/onos_gw_mac_update.sh b/lib/installer/onos/onos_gw_mac_update.sh index d003cc01..323021db 100644 --- a/lib/installer/onos/onos_gw_mac_update.sh +++ b/lib/installer/onos/onos_gw_mac_update.sh @@ -38,7 +38,7 @@ EOI fi # get gateway mac - GW_MAC=$(arping ${GW_IP} -c 1 -I brbm2 | grep -Eo '([0-9a-fA-F]{2})(([/\s:-][0-9a-fA-F]{2}){5})') + GW_MAC=$(arping ${GW_IP} -c 1 -I br-public | grep -Eo '([0-9a-fA-F]{2})(([/\s:-][0-9a-fA-F]{2}){5})') if [ -z "$GW_MAC" ]; then echo "ERROR: Failed to find gateway mac for ${GW_IP}" |