Files
openstack-ansible-galera_cl…/Vagrantfile
Andy McCrae 99f1f7d59f Remove Trusty support from galera_client role
Change-Id: I739651ff2c36fbe487abb3ad7f56038c0a12e748
Implements: blueprint trusty-removal
2016-12-15 12:41:21 +00:00

9 lines
178 B
Ruby

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