openstack-ansible-os_horizon/Vagrantfile
Travis Truman e2f240b484 Add xenial support to the Vagrantfile
Local testing of the role is now possible using
Ubuntu xenial with the command: vagrant up ubuntu1604

Change-Id: If4f3335986df214970e97435d779499eddda9436
2016-09-26 12:10:19 -04:00

27 lines
563 B
Ruby

Vagrant.configure(2) do |config|
config.vm.provider "virtualbox" do |v|
v.memory = 2048
v.cpus = 2
end
config.vm.define "ubuntu1404" do |trusty|
trusty.vm.box = "ubuntu/trusty64"
trusty.vm.provision "shell", inline: <<-SHELL
sudo su -
cd /vagrant
./run_tests.sh
SHELL
end
config.vm.define "ubuntu1604" do |xenial|
xenial.vm.box = "ubuntu/xenial64"
xenial.vm.provision "shell", inline: <<-SHELL
sudo su -
cd /vagrant
apt-get install -y python2.7
./run_tests.sh
SHELL
end
end