mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-07-23 21:30:22 -07:00
Expose the playbook to callback plugins
This commit is contained in:
parent
3ed902eee2
commit
f99500d65c
2 changed files with 7 additions and 0 deletions
|
@ -108,6 +108,12 @@ def log_unflock(runner):
|
|||
except OSError:
|
||||
pass
|
||||
|
||||
def set_playbook(callback, playbook):
|
||||
''' used to notify callback plugins of playbook context '''
|
||||
callback.playbook = playbook
|
||||
for callback_plugin in callback_plugins:
|
||||
callback_plugin.playbook = playbook
|
||||
|
||||
def set_play(callback, play):
|
||||
''' used to notify callback plugins of context '''
|
||||
callback.play = play
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue