Adding initial support for includes in handlers

Fixes #11694
This commit is contained in:
James Cammarata 2015-07-24 16:21:16 -04:00
commit eccfb7e0b5
2 changed files with 49 additions and 4 deletions

View file

@ -307,6 +307,11 @@ class PlayIterator:
if res:
return res
for block in self._play.handlers:
res = _search_block(block, task)
if res:
return res
return None
def add_tasks(self, host, task_list):