11 lines
281 B
Ruby
11 lines
281 B
Ruby
Vagrant.configure(2) do |config|
|
|
config.vm.hostname = "vagrant.example.com"
|
|
config.vm.box = "debian/stretch64"
|
|
config.ssh.insert_key = false
|
|
|
|
config.vm.provision "ansible" do |ansible|
|
|
ansible.verbose ="vv"
|
|
ansible.playbook = "test.yml"
|
|
end
|
|
end
|