Commit 4cf057a3 by Michael DeHaan

Merge pull request #456 from dhozac/notify-variable

Allow variables in notify list
parents 0d4aa858 3cf749ea
......@@ -207,7 +207,7 @@ class PlayBook(object):
for host, results in results.get('contacted',{}).iteritems():
if results.get('changed', False):
for handler_name in task.notify:
self._flag_handler(play.handlers(), handler_name, host)
self._flag_handler(play.handlers(), utils.template(handler_name, task.module_vars), host)
# *****************************************************
......
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