From 2f828075adeab453f357d56a8590baebd144bb3b Mon Sep 17 00:00:00 2001 From: Huang Haibin Date: Wed, 13 Dec 2017 13:16:32 +0800 Subject: Fix interface name issue Fix interface name issue in multicloud test due to vagrant box bento/ubuntu-16.04 update Issue-ID: MULTICLOUD-57 Change-Id: If43b2bdcd440149200a413789637e7f8ee51f25b Signed-off-by: Huang Haibin --- ocata/vagrant/setup_compute.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'ocata/vagrant/setup_compute.sh') diff --git a/ocata/vagrant/setup_compute.sh b/ocata/vagrant/setup_compute.sh index 56ef08b6..3f503531 100644 --- a/ocata/vagrant/setup_compute.sh +++ b/ocata/vagrant/setup_compute.sh @@ -4,7 +4,8 @@ set -ex cd devstack cp /vagrant/compute.conf local.conf -ip=$(ip a s enp0s8 | grep inet | grep -v inet6 | sed "s/.*inet //" | cut -f1 -d'/') +data_if=$(ifconfig | grep 192.168.* -B 1 | awk -F " " 'NR==1{print $1}') +ip=$(ip a s $data_if | grep inet | grep -v inet6 | sed "s/.*inet //" | cut -f1 -d'/') host=$(hostname) sed -i -e "s/HOSTIP/$ip/" -e "s/HOSTNAME/$host/" local.conf ./stack.sh -- cgit 1.2.3-korg