From c08bd597ced946573abdddc31fbdb06e0d803c1e Mon Sep 17 00:00:00 2001 From: klippo Date: Wed, 9 Apr 2025 09:26:00 +0200 Subject: [PATCH] Correctly append --ask-vault-password as a single argument Closes-Bug: #2106540 Change-Id: I143e3267622b106fa65bc952d62412ffcaeeae7c Signed-off-by: Michael Klippberg --- kolla_ansible/ansible.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kolla_ansible/ansible.py b/kolla_ansible/ansible.py index 7a29ae9f5c..da53bc81a2 100644 --- a/kolla_ansible/ansible.py +++ b/kolla_ansible/ansible.py @@ -253,7 +253,7 @@ def build_args(parsed_args, for vault_pass_file in parsed_args.vault_password_file: args += ["--vault-password-file", vault_pass_file] if parsed_args.ask_vault_password: - args += "--ask-vault-password" + args += ["--ask-vault-password"] vars_files = _get_vars_files( os.path.abspath(parsed_args.kolla_config_path)) for vars_file in vars_files: