mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-04-25 03:41:25 -07:00
parent
f27078df52
commit
e010034151
3 changed files with 9 additions and 3 deletions
|
@ -224,7 +224,7 @@ class PullCLI(CLI):
|
|||
context.CLIARGS['module_name'],
|
||||
repo_opts, limit_opts)
|
||||
for ev in context.CLIARGS['extra_vars']:
|
||||
cmd += ' -e "%s"' % shlex_quote(ev)
|
||||
cmd += ' -e %s' % shlex_quote(ev)
|
||||
|
||||
# Nap?
|
||||
if context.CLIARGS['sleep']:
|
||||
|
@ -259,7 +259,7 @@ class PullCLI(CLI):
|
|||
cmd += " --vault-id=%s" % vault_id
|
||||
|
||||
for ev in context.CLIARGS['extra_vars']:
|
||||
cmd += ' -e "%s"' % shlex_quote(ev)
|
||||
cmd += ' -e %s' % shlex_quote(ev)
|
||||
if context.CLIARGS['ask_sudo_pass'] or context.CLIARGS['ask_su_pass'] or context.CLIARGS['become_ask_pass']:
|
||||
cmd += ' --ask-become-pass'
|
||||
if context.CLIARGS['skip_tags']:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue