From e3a4ffb32a11d7055b9b4855f3dd643ac657812d Mon Sep 17 00:00:00 2001 From: Attila Farkas <x394097@fi.muni.cz> Date: Tue, 5 Nov 2019 14:16:15 +0100 Subject: [PATCH] verbose output for ansible --- templates/vagrantfile | 1 + 1 file changed, 1 insertion(+) diff --git a/templates/vagrantfile b/templates/vagrantfile index 90bb2b7..ceee423 100644 --- a/templates/vagrantfile +++ b/templates/vagrantfile @@ -22,6 +22,7 @@ Vagrant.configure("2") do |config| # configuration of devices with ansible config.vm.provision "ansible" do |ansible| ansible.playbook = "provisioning/playbook.yml" + ansible.verbose = true ansible.extra_vars = { ansible_python_interpreter: "/usr/bin/python3", } -- GitLab