openstack-ansible-repo_build/Vagrantfile
Travis Truman 294b4a0c76 Ansible 2.1.1 role testing
Change-Id: I8ddf65a83d7e3a7a6b7e108eda67f48b816cda74
2016-09-14 11:57:00 -04:00

12 lines
246 B
Ruby

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