openstack-ansible-lxc_hosts/Vagrantfile
Andy McCrae 1eddafec76 Remove Trusty support form lxc_hosts role
Change-Id: I90afc3bbec9eaaaeef76efc5e0a3ca2e9cf87ef4
Implements: blueprint trusty-removal
2016-12-15 13:13:45 +00:00

13 lines
260 B
Ruby

Vagrant.configure(2) do |config|
config.vm.box = "ubuntu/xenial64"
config.vm.provider "virtualbox" do |v|
v.memory = 2048
v.cpus = 2
end
config.vm.provision "shell", inline: <<-SHELL
sudo su -
cd /vagrant
./run_tests.sh
SHELL
end