fixes AttributeError: 'Task' object has no attribute '_block'

This addresses a problem when *_config or *_template network modules are
being used in roles.  The module will error with the above message.  This
fixes that problem

fixed ansible/ansible-modules-core#4840
This commit is contained in:
Peter Sprygada 2016-09-16 22:04:22 -04:00
parent 07a76bece1
commit 2a7c87a3b7
2 changed files with 10 additions and 8 deletions

View file

@ -108,6 +108,7 @@ class ActionModule(ActionBase):
searchpath = [working_path]
if self._task._role is not None:
searchpath.append(self._task._role._role_path)
if hasattr(self._task, "_block:"):
dep_chain = self._task._block.get_dep_chain()
if dep_chain is not None:
for role in dep_chain:

View file

@ -101,6 +101,7 @@ class ActionModule(ActionBase):
searchpath = [working_path]
if self._task._role is not None:
searchpath.append(self._task._role._role_path)
if hasattr(self._task, "_block:"):
dep_chain = self._task._block.get_dep_chain()
if dep_chain is not None:
for role in dep_chain: