Commit 05121bf3 by Michael DeHaan

Merge pull request #530 from dhozac/templates-vars

Allow variables in variables in templates
parents 12bb0859 aba1fe87
......@@ -279,13 +279,13 @@ def template_from_file(basedir, path, vars, setup_cache):
''' run a file through the templating engine '''
environment = jinja2.Environment(loader=jinja2.FileSystemLoader(basedir), trim_blocks=False)
data = codecs.open(path_dwim(basedir, path), encoding="utf8").read()
template = environment.from_string(data)
t = environment.from_string(data)
vars = vars.copy()
vars['hostvars'] = setup_cache
res = template.render(vars)
res = t.render(vars)
if data.endswith('\n') and not res.endswith('\n'):
res = res + '\n'
return res
return template(res, vars, setup_cache)
def parse_yaml(data):
return yaml.load(data)
......
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