ansible-gnu-corporate-works.../Vagrantfile

11 lines
243 B
Ruby
Raw Normal View History

2017-08-31 21:22:57 +02:00
# -*- mode: ruby -*-
# vi: set ft=ruby :
Vagrant.configure("2") do |config|
config.vm.box = "boxcutter/ubuntu1604-desktop"
config.vm.provision "ansible" do |ansible|
#ansible.verbose = "vv"
2017-08-31 21:22:57 +02:00
ansible.playbook = "test.yml"
end
end