From fac20163c8a725e6f1a5a487c59a72d2a2a7a583 Mon Sep 17 00:00:00 2001 From: Pierre-Yves Chibon Date: Mon, 8 Jun 2020 19:51:05 +0000 Subject: [PATCH] vhost-info: specify a default verbosity to make it work Signed-off-by: Pierre-Yves Chibon --- scripts/vhost-info | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/scripts/vhost-info b/scripts/vhost-info index ca26c255ed..fb4b73829a 100755 --- a/scripts/vhost-info +++ b/scripts/vhost-info @@ -61,7 +61,10 @@ else: hosts = ';'.join(opts.host) # since the API is constructed for CLI it expects certain options to always be set in the context object -context.CLIARGS = ImmutableDict(connection='ssh', module_path=['/usr/lib/python3.6/site-packages/ansible/modules/'], forks=25, become=None, become_method=None, become_user=None, check=False, diff=False) +context.CLIARGS = ImmutableDict(connection='ssh', + module_path=['/usr/lib/python3.6/site-packages/ansible/modules/'], + forks=25, become=None, become_method=None, become_user=None, + check=False, diff=False, verbosity=0) # create inventory and pass to var manager loader = DataLoader()