ansible/test/units/module_utils
Adrian Likins 6e585bdf24
Fact collector ordering deps (#31362)
Add deps/requires for fact collectors

Fact collectors can now set a required_facts
class attribute that will be a set of the names
of fact collectors they require to be run first.

ie, if a collector needs to know the ansible_distribution,
it should set it's required_facts to include 'distribution'

        required_facts = set(['distribution'])

If a collector requires another collector, it gets added
to the selected collector names.

We then topological sort the ordering of the collectors
so that deps work out (ie, 'distribution' will run before
'service_mgr')

required_facts were added to the collectors for:

        - network (requires 'distribution', 'platform')
        - hardware (requires 'platform')
        - service_mgr (requires 'distribution', 'platform')

Fix name references for facts (need 'ansible_' prefix)
is service_mgr

Fixes #30753
2018-01-22 18:23:40 -05:00
..
aws
basic
cloud
ec2
facts Fact collector ordering deps (#31362) 2018-01-22 18:23:40 -05:00
gcp
json_utils
net_tools Add support for Infoblox NIOS (#35097) 2018-01-22 14:25:13 +00:00
network
parsing
__init__.py
conftest.py
test_database.py
test_distribution_version.py Facts distribution clear linux 31501 (#32453) 2018-01-20 15:05:53 -05:00
test_known_hosts.py
test_postgresql.py
test_text.py