Merge pull request #8689 from willthames/ansible-pull-parallel
Restrict ansible-pull to only do scm checkout once
This commit is contained in:
commit
d63092ea45
1 changed files with 1 additions and 1 deletions
|
@ -169,7 +169,7 @@ def main(args):
|
||||||
if path is None:
|
if path is None:
|
||||||
sys.stderr.write("module '%s' not found.\n" % options.module_name)
|
sys.stderr.write("module '%s' not found.\n" % options.module_name)
|
||||||
return 1
|
return 1
|
||||||
cmd = 'ansible all -i "%s" %s -m %s -a "%s"' % (
|
cmd = 'ansible localhost -i "%s" %s -m %s -a "%s"' % (
|
||||||
inv_opts, base_opts, options.module_name, repo_opts
|
inv_opts, base_opts, options.module_name, repo_opts
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue