summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorSviatoslav Sydorenko <webknjaz@redhat.com>2020-08-06 19:50:04 +0200
committerGitHub <noreply@github.com>2020-08-06 12:50:04 -0500
commit3fe5da947b0e973065e236c695e40e34bb8526c9 (patch)
treebc16e469447397115108e7585be707f9e0ed302d /docs
parent78592ffd68e990b5817315ae8872aa90048ce970 (diff)
downloadansible-3fe5da947b0e973065e236c695e40e34bb8526c9.tar.gz
Fix the internal Python API usage examples (#70842)
Previous version initialized the `TaskQueueManager` after calling `Play.load()` while advertising a way to inject a custom library location path. This caused the tasks loader not to find any custom modules because it was triggered before the path was actually added to the module loader. This patch changes the order of the operations to ensure that the customized `context.CLIARGS` actually influences things. Resolves https://github.com/ansible/ansible/issues/69758. (cherry picked from commit 8d97c8c222d134cb1108310c5b22eb65ead2d2d3)
Diffstat (limited to 'docs')
-rw-r--r--docs/docsite/rst/dev_guide/developing_api.rst22
1 files changed, 13 insertions, 9 deletions
diff --git a/docs/docsite/rst/dev_guide/developing_api.rst b/docs/docsite/rst/dev_guide/developing_api.rst
index f18d6f1d4e..5e08c7cc60 100644
--- a/docs/docsite/rst/dev_guide/developing_api.rst
+++ b/docs/docsite/rst/dev_guide/developing_api.rst
@@ -71,6 +71,18 @@ This example is a simple demonstration that shows how to minimally run a couple
# variable manager takes care of merging all the different sources to give you a unified view of variables available in each context
variable_manager = VariableManager(loader=loader, inventory=inventory)
+ # Instantiate task queue manager, which takes care of forking
+ # and setting up all objects to iterate over host list and tasks.
+ # IMPORTANT: This also adds library dirs paths to the module loader
+ # IMPORTANT: and so it must be initialized before calling `Play.load()`.
+ tqm = TaskQueueManager(
+ inventory=inventory,
+ variable_manager=variable_manager,
+ loader=loader,
+ passwords=passwords,
+ stdout_callback=results_callback, # Use our custom callback instead of the ``default`` callback plugin, which prints to stdout
+ )
+
# create data structure that represents our play, including tasks, this is basically what our YAML loader does internally.
play_source = dict(
name = "Ansible Play",
@@ -86,16 +98,8 @@ This example is a simple demonstration that shows how to minimally run a couple
# this will also automatically create the task objects from the info provided in play_source
play = Play().load(play_source, variable_manager=variable_manager, loader=loader)
- # Run it - instantiate task queue manager, which takes care of forking and setting up all objects to iterate over host list and tasks
- tqm = None
+ # Actually run it
try:
- tqm = TaskQueueManager(
- inventory=inventory,
- variable_manager=variable_manager,
- loader=loader,
- passwords=passwords,
- stdout_callback=results_callback, # Use our custom callback instead of the ``default`` callback plugin, which prints to stdout
- )
result = tqm.run(play) # most interesting data for a play is actually sent to the callback's methods
finally:
# we always need to cleanup child procs and the structures we use to communicate with them