mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-05-03 07:41:30 -07:00
fix vars hostname fallback
also made it optimistic, rely on exceptions instead of copmlex if chains
This commit is contained in:
parent
9a18385fab
commit
11dbed1350
1 changed files with 7 additions and 7 deletions
|
@ -78,15 +78,15 @@ class LookupModule(LookupBase):
|
||||||
raise AnsibleError('Invalid setting identifier, "%s" is not a string, its a %s' % (term, type(term)))
|
raise AnsibleError('Invalid setting identifier, "%s" is not a string, its a %s' % (term, type(term)))
|
||||||
|
|
||||||
try:
|
try:
|
||||||
if term in myvars:
|
try:
|
||||||
value = myvars[term]
|
value = myvars[term]
|
||||||
elif 'hostvars' in myvars and term in myvars['hostvars']:
|
except KeyError:
|
||||||
# maybe it is a host var?
|
try:
|
||||||
value = myvars['hostvars'][term]
|
value = myvars['hostvars'][myvars['inventory_hostname']][term]
|
||||||
else:
|
except KeyError:
|
||||||
raise AnsibleUndefinedVariable('No variable found with this name: %s' % term)
|
raise AnsibleUndefinedVariable('No variable found with this name: %s' % term)
|
||||||
ret.append(self._templar.template(value, fail_on_undefined=True))
|
|
||||||
|
|
||||||
|
ret.append(self._templar.template(value, fail_on_undefined=True))
|
||||||
except AnsibleUndefinedVariable:
|
except AnsibleUndefinedVariable:
|
||||||
if default is not None:
|
if default is not None:
|
||||||
ret.append(default)
|
ret.append(default)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue