From 2383a8205c6203e53a57bd577ed0651335ae2faa Mon Sep 17 00:00:00 2001 From: Ralph Tice Date: Mon, 22 Jul 2013 09:59:26 -0500 Subject: [PATCH] changed role path template to read all vars instead of just extra_vars --- lib/ansible/playbook/play.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/ansible/playbook/play.py b/lib/ansible/playbook/play.py index 4e1bc4d086..dc1c72fbb0 100644 --- a/lib/ansible/playbook/play.py +++ b/lib/ansible/playbook/play.py @@ -151,7 +151,7 @@ class Play(object): has_dict = {} for role_path in roles: - orig_path = template(self.basedir,role_path,self.playbook.extra_vars) + orig_path = template(self.basedir,role_path,self.vars) if type(orig_path) == dict: # what, not a path?