diff options
author | Huang Haibin <haibin.huang@intel.com> | 2017-12-13 13:16:32 +0800 |
---|---|---|
committer | Huang Haibin <haibin.huang@intel.com> | 2018-01-10 23:20:15 +0800 |
commit | 2f828075adeab453f357d56a8590baebd144bb3b (patch) | |
tree | 5e86675689edf641a90e077c7a2a33041893425e /ocata/vagrant/setup_compute.sh | |
parent | 4a60ce3227898ac1749c8000b6f1e1d4a222e25d (diff) |
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 <haibin.huang@intel.com>
Diffstat (limited to 'ocata/vagrant/setup_compute.sh')
-rw-r--r-- | ocata/vagrant/setup_compute.sh | 3 |
1 files changed, 2 insertions, 1 deletions
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 |