Fix interface name issue 91/26491/10
authorHuang Haibin <haibin.huang@intel.com>
Wed, 13 Dec 2017 05:16:32 +0000 (13:16 +0800)
committerHuang Haibin <haibin.huang@intel.com>
Wed, 10 Jan 2018 15:20:15 +0000 (23:20 +0800)
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 <haibin.huang@intel.com>
ocata/vagrant/bootstrap.sh
ocata/vagrant/setup_compute.sh

index 2f2d1b1..8bbd7dd 100644 (file)
@@ -8,9 +8,10 @@ git clone https://github.com/openstack-dev/devstack
 cd devstack; git checkout stable/ocata
 sudo apt-get install openvswitch-switch -y
 sudo ovs-vsctl add-br br-ex
-ip=$(ip a s enp0s9 | grep inet | grep -v inet6 | sed "s/.*inet//" | cut -f2 -d' ')
-sudo ip address flush enp0s9
-sudo ovs-vsctl add-port br-ex enp0s9
+ctl_if=$(ifconfig | grep 192.168.* -B 1 | awk -F " " 'NR==4{print $1}')
+ip=$(ip a s $ctl_if | grep inet | grep -v inet6 | sed "s/.*inet//" | cut -f2 -d' ')
+sudo ip address flush $ctl_if
+sudo ovs-vsctl add-port br-ex $ctl_if
 sudo ip a a $ip dev br-ex
 sudo ip link set dev br-ex up
-sudo ip link set dev enp0s9 up
+sudo ip link set dev $ctl_if up
index 56ef08b..3f50353 100644 (file)
@@ -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