(cherry picked from commit bc25ac2
)
Co-authored-by: Matt Martz <matt@sivel.net>
This commit is contained in:
parent
9406fbe4a2
commit
fd73fe02b4
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)
|
|
@ -115,4 +115,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