Commit 291f0724 by James Cammarata

Properly return Jinja2 Undefined class for bad hostvars lookups

Fixes #11176
parent 9fe0f21f
......@@ -19,6 +19,8 @@
from __future__ import (absolute_import, division, print_function)
__metaclass__ = type
from jinja2 import Undefined as j2undefined
from ansible.template import Templar
__all__ = ['HostVars']
......@@ -37,6 +39,8 @@ class HostVars(dict):
if host_name not in self._lookup:
host = self._inventory.get_host(host_name)
if not host:
return j2undefined
result = self._vars_manager.get_vars(loader=self._loader, play=self._play, host=host)
templar = Templar(variables=result, loader=self._loader)
self._lookup[host_name] = templar.template(result, fail_on_undefined=False)
......
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