New v2_runner_on_start callback added (#47684)

* New v2_runner_on_start callback added to indicate the start of execution for a host in a specific task

* Add changelog fragment

* Minor docstring clarification
This commit is contained in:
Matt Martz
2018-10-30 11:37:11 -05:00
committed by GitHub
parent 7db63851e0
commit fd662c0a63
3 changed files with 10 additions and 0 deletions

View File

@@ -412,3 +412,10 @@ class CallbackBase(AnsiblePlugin):
def v2_runner_retry(self, result):
pass
def v2_runner_on_start(self, host, task):
"""Event used when host begins execution of a task
.. versionadded:: 2.8
"""
pass