mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Fix issue#6430 by instantiating Network() with expected arguments
This commit is contained in:
parent
e0147f18b1
commit
2a723e908e
1 changed files with 1 additions and 1 deletions
|
@ -2297,7 +2297,7 @@ def ansible_facts(module):
|
||||||
facts = {}
|
facts = {}
|
||||||
facts.update(Facts().populate())
|
facts.update(Facts().populate())
|
||||||
facts.update(Hardware().populate())
|
facts.update(Hardware().populate())
|
||||||
facts.update(Network(module).populate())
|
facts.update(Network().populate())
|
||||||
facts.update(Virtual().populate())
|
facts.update(Virtual().populate())
|
||||||
return facts
|
return facts
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue