openstack-ansible-tests/Vagrantfile
Andy McCrae 2249c567c2 Remove Trusty support from tests repository
Change-Id: I66b5bef5ec55b87902bf25f8bc56dfb0d33a5ff1
Implements: blueprint trusty-removal
2016-12-16 10:26:39 +00:00

10 lines
197 B
Ruby

Vagrant.configure(2) do |config|
config.vm.box = "ubuntu/xenial64"
config.vm.provision "shell", inline: <<-SHELL
sudo su -
cd /vagrant
apt-get update
./run_tests.sh
SHELL
end