ansible-config_template/Vagrantfile
Andy McCrae 1bc328cd01 Remove Trusty support from plugins role
Change-Id: Ibab5aa0e202a427563e74a4356ba52bc70d7042c
Implements: blueprint trusty-removal
2016-12-15 15:17:53 +00:00

14 lines
279 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
apt-get update
./run_tests.sh
SHELL
end