mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-04-17 22:30:59 +00:00
Let the callbacks see the playbook and (current) runner objects.
This commit is contained in:
@@ -114,6 +114,9 @@ class PlayBook(object):
|
||||
self.private_key_file = private_key_file
|
||||
self.only_tags = only_tags
|
||||
|
||||
self.callbacks.playbook = self
|
||||
self.runner_callbacks.playbook = self
|
||||
|
||||
if inventory is None:
|
||||
self.inventory = ansible.inventory.Inventory(host_list)
|
||||
self.inventory.subset(subset)
|
||||
|
||||
@@ -157,6 +157,8 @@ class Runner(object):
|
||||
self.environment = environment
|
||||
self.complex_args = complex_args
|
||||
|
||||
self.callbacks.runner = self
|
||||
|
||||
# misc housekeeping
|
||||
if subset and self.inventory._subset is None:
|
||||
# don't override subset when passed from playbook
|
||||
|
||||
Reference in New Issue
Block a user