11 lines
242 B
Ruby
11 lines
242 B
Ruby
# -*- 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"
|
|
ansible.playbook = "test.yml"
|
|
end
|
|
end
|