This commit is contained in:
parent
18d713e6d5
commit
bc25ac20e1
2 changed files with 6 additions and 0 deletions
3
changelogs/fragments/58310-gather-facts-verbosity.yml
Normal file
3
changelogs/fragments/58310-gather-facts-verbosity.yml
Normal file
|
@ -0,0 +1,3 @@
|
|||
bugfixes:
|
||||
- gather_facts - Prevent gather_facts from being verbose, just like is done
|
||||
in the normal action plugin for setup (https://github.com/ansible/ansible/issues/58310)
|
|
@ -119,4 +119,7 @@ class ActionModule(ActionBase):
|
|||
# tell executor facts were gathered
|
||||
result['ansible_facts']['_ansible_facts_gathered'] = True
|
||||
|
||||
# hack to keep --verbose from showing all the setup module result
|
||||
result['_ansible_verbose_override'] = True
|
||||
|
||||
return result
|
||||
|
|
Loading…
Reference in a new issue