openstack-ansible-os_horizon/Vagrantfile
Andy McCrae 8db4cd3e4b Remove Trusty support from os_horizon role
Change-Id: I7d2e00871840b493bcd5d4edb131dd689ff01efc
Implements: blueprint trusty-removal
2016-12-15 12:33:16 +00:00

18 lines
359 B
Ruby

Vagrant.configure(2) do |config|
config.vm.provider "virtualbox" do |v|
v.memory = 2048
v.cpus = 2
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