ansible-config_template/Vagrantfile
Travis Truman 29668ca8f0 Adding Vagrantfile for local testing
Running `vagrant up` will emulate the gate tests

Change-Id: I6d3df08a472b15f646ddfccf502c946b5b13d2e6
2016-08-12 15:13:40 -05:00

13 lines
278 B
Ruby

Vagrant.configure(2) do |config|
config.vm.box = "ubuntu/trusty64"
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