summaryrefslogtreecommitdiffstats
path: root/ocata/vagrant/bootstrap.sh
blob: 2f2d1b125abd8054fd07381a6858e81e0d8d0f8c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/bin/bash

set -ex

sudo apt-get update -y
sudo apt-get install git -y
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
sudo ip a a $ip dev br-ex
sudo ip link set dev br-ex up
sudo ip link set dev enp0s9 up