mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Merge pull request #12365 from gptech/patch-1
Replace 'degug' with 'debug'
This commit is contained in:
commit
f080a48f22
1 changed files with 1 additions and 1 deletions
|
@ -39,7 +39,7 @@ class ActionModule(ActionBase):
|
||||||
|
|
||||||
if module == 'auto':
|
if module == 'auto':
|
||||||
facts = self._execute_module(module_name='setup', module_args=dict(filter='ansible_pkg_mgr'), task_vars=task_vars)
|
facts = self._execute_module(module_name='setup', module_args=dict(filter='ansible_pkg_mgr'), task_vars=task_vars)
|
||||||
self._display.degug("Facts %s" % facts)
|
self._display.debug("Facts %s" % facts)
|
||||||
if not 'failed' in facts:
|
if not 'failed' in facts:
|
||||||
module = getattr(facts['ansible_facts'], 'ansible_pkg_mgr', 'auto')
|
module = getattr(facts['ansible_facts'], 'ansible_pkg_mgr', 'auto')
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue