Make variables local to the play

Fixes #1677.
parent fa63e9ce
......@@ -161,7 +161,7 @@ class Play(object):
if type(self.vars) not in [dict, list]:
raise errors.AnsibleError("'vars' section must contain only key/value pairs")
vars = self.playbook.global_vars
vars = {}
# translate a list of vars into a dict
if type(self.vars) == list:
......
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