From 237447f078e27a24ea56f1422a95d41fed782616 Mon Sep 17 00:00:00 2001
From: Attila Farkas <ati@mail.muni.cz>
Date: Mon, 8 Jun 2020 09:55:02 +0200
Subject: [PATCH] set verbosity to vv

---
 modules/input_argument_parser.py | 2 +-
 modules/vagrant_generator.py     | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/modules/input_argument_parser.py b/modules/input_argument_parser.py
index 1ccacc4..91b5b1f 100644
--- a/modules/input_argument_parser.py
+++ b/modules/input_argument_parser.py
@@ -19,7 +19,7 @@ def parse_input_args():
                         help="uses ansible_local for provisioning instead"
                         "of ansible", action="store_true")
     parser.add_argument("--verbose_ansible",
-                        help="sets verbose output for ansible (-vvvv)",
+                        help="sets verbose output for ansible (-vv)",
                         action="store_true")
     parser.add_argument("--border_router",
                         help="creates a border router with connection to"
diff --git a/modules/vagrant_generator.py b/modules/vagrant_generator.py
index f343b0e..44dc52d 100644
--- a/modules/vagrant_generator.py
+++ b/modules/vagrant_generator.py
@@ -82,7 +82,7 @@ def _create_ansible_commands(playbook_location, input_definitions, flags):
         verbosity = dict()
         verbosity["type"] = "string"
         verbosity["command"] = "verbose"
-        verbosity["value"] = "vvvv"
+        verbosity["value"] = "vv"
         commands.append(verbosity)
 
     groups = dict()
-- 
GitLab