mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-04-02 00:33:09 +00:00
Keep hostvars from being templated
This commit is contained in:
@@ -248,7 +248,12 @@ class _jinja2_vars(object):
|
||||
def __getitem__(self, varname):
|
||||
if varname not in self.vars:
|
||||
raise KeyError("undefined variable: %s" % varname)
|
||||
return template_ds(self.basedir, self.vars[varname], self.vars)
|
||||
var = self.vars[varname]
|
||||
# HostVars is special, return it as-is
|
||||
if isinstance(var, dict) and type(var) != dict:
|
||||
return var
|
||||
else:
|
||||
return template_ds(self.basedir, var, self.vars)
|
||||
|
||||
def template_from_file(basedir, path, vars):
|
||||
''' run a file through the templating engine '''
|
||||
|
||||
Reference in New Issue
Block a user