From 21b71b38a3e73224e813c9d21c00039b5ea872f5 Mon Sep 17 00:00:00 2001 From: Maciej Wereski Date: Tue, 22 Mar 2022 14:11:44 +0100 Subject: [PATCH] Vagrantfile: add var to set ansible verbosity level (#8639) Signed-off-by: Maciej Wereski --- Vagrantfile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Vagrantfile b/Vagrantfile index 5f84143ee..74da40e4a 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -73,6 +73,8 @@ $disk_size ||= "20GB" $local_path_provisioner_enabled ||= false $local_path_provisioner_claim_root ||= "/opt/local-path-provisioner/" $libvirt_nested ||= false +# boolean or string (e.g. "-vvv") +$ansible_verbosity ||= false $playbook ||= "cluster.yml" @@ -244,6 +246,7 @@ Vagrant.configure("2") do |config| if i == $num_instances node.vm.provision "ansible" do |ansible| ansible.playbook = $playbook + ansible.verbose = $ansible_verbosity $ansible_inventory_path = File.join( $inventory, "hosts.ini") if File.exist?($ansible_inventory_path) ansible.inventory_path = $ansible_inventory_path