Is there a way to get Vagrant to display the output of the provisioning tool as it runs, rather than just at the end? I\'m using the Ansible plugin if that matters.
I used Vagrant 1.7.4 and ansible.verbosity is no longer available (since 1.5).
It's the right way to do:
Vagrant.configure("2") do |config|
config.vm.provision "ansible" do |ansible|
ansible.playbook = "provisioning/playbook.yml"
ansible.verbose = "vvv"
end
end