mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-08 06:12:51 +00:00
use namespaced facts
This commit is contained in:
@@ -46,9 +46,9 @@ class ActionModule(ActionBase):
|
|||||||
if module == 'auto':
|
if module == 'auto':
|
||||||
try:
|
try:
|
||||||
if self._task.delegate_to: # if we delegate, we should use delegated host's facts
|
if self._task.delegate_to: # if we delegate, we should use delegated host's facts
|
||||||
module = self._templar.template("{{hostvars['%s']['ansible_pkg_mgr']}}" % self._task.delegate_to)
|
module = self._templar.template("{{hostvars['%s']['ansible_facts']['ansible_pkg_mgr']}}" % self._task.delegate_to)
|
||||||
else:
|
else:
|
||||||
module = self._templar.template('{{ansible_pkg_mgr}}')
|
module = self._templar.template('{{ansible_facts["ansible_pkg_mgr"]}}')
|
||||||
except:
|
except:
|
||||||
pass # could not get it from template!
|
pass # could not get it from template!
|
||||||
|
|
||||||
|
|||||||
@@ -45,9 +45,9 @@ class ActionModule(ActionBase):
|
|||||||
if module == 'auto':
|
if module == 'auto':
|
||||||
try:
|
try:
|
||||||
if self._task.delegate_to: # if we delegate, we should use delegated host's facts
|
if self._task.delegate_to: # if we delegate, we should use delegated host's facts
|
||||||
module = self._templar.template("{{hostvars['%s']['ansible_service_mgr']}}" % self._task.delegate_to)
|
module = self._templar.template("{{hostvars['%s']['ansible_facts']['ansible_service_mgr']}}" % self._task.delegate_to)
|
||||||
else:
|
else:
|
||||||
module = self._templar.template('{{ansible_service_mgr}}')
|
module = self._templar.template('{{ansible_facts["ansible_service_mgr"]}}')
|
||||||
except:
|
except:
|
||||||
pass # could not get it from template!
|
pass # could not get it from template!
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user