Commit 44a93523 by Michael DeHaan

Also template handlers only at the end.

parent e7f5186d
...@@ -66,7 +66,8 @@ class Play(object): ...@@ -66,7 +66,8 @@ class Play(object):
self._update_vars_files_for_host(None) self._update_vars_files_for_host(None)
for key in ds: for key in ds:
if key != 'tasks': if key != 'tasks' and key != 'handlers':
# we want to template these later to allow inventory-scope a chance to override
ds[key] = template.template(basedir, ds[key], self.vars) ds[key] = template.template(basedir, ds[key], self.vars)
self._ds = ds self._ds = ds
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment