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
commit fd662c0a63
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
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