Add --vault-id support to ansible-pull

Without this additional code snippet `ansible-pull` will still accept
the `--vault-id` option. It just won't pass the option along when
invoking `ansible-pull`.
pull/33651/head
Andreas Olsson 7 years ago committed by Brian Coca
parent 2bc4c4f156
commit 7bd54a51e2

@ -239,6 +239,9 @@ class PullCLI(CLI):
if self.options.vault_password_files:
for vault_password_file in self.options.vault_password_files:
cmd += " --vault-password-file=%s" % vault_password_file
if self.options.vault_ids:
for vault_id in self.options.vault_ids:
cmd += " --vault-id=%s" % vault_id
for ev in self.options.extra_vars:
cmd += ' -e "%s"' % ev

Loading…
Cancel
Save