mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
parent
af2ce7725b
commit
0aaee0272a
2 changed files with 8 additions and 2 deletions
|
@ -41,7 +41,10 @@ class ActionModule(ActionBase):
|
||||||
|
|
||||||
if module == 'auto':
|
if module == 'auto':
|
||||||
try:
|
try:
|
||||||
module = self._templar.template('{{ansible_pkg_mgr}}')
|
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)
|
||||||
|
else:
|
||||||
|
module = self._templar.template('{{ansible_pkg_mgr}}')
|
||||||
except:
|
except:
|
||||||
pass # could not get it from template!
|
pass # could not get it from template!
|
||||||
|
|
||||||
|
|
|
@ -40,7 +40,10 @@ class ActionModule(ActionBase):
|
||||||
|
|
||||||
if module == 'auto':
|
if module == 'auto':
|
||||||
try:
|
try:
|
||||||
module = self._templar.template('{{ansible_service_mgr}}')
|
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)
|
||||||
|
else:
|
||||||
|
module = self._templar.template('{{ansible_service_mgr}}')
|
||||||
except:
|
except:
|
||||||
pass # could not get it from template!
|
pass # could not get it from template!
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue