community.general/lib/ansible/module_utils/facts/system
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
..
__init__.py
apparmor.py
caps.py
chroot.py start of 'is chroot' fact 2017-09-18 16:16:41 -04:00
cmdline.py Cmdline fact uefi 23647 (#25446) 2017-06-08 16:03:29 -04:00
date_time.py
distribution.py Fact collector ordering deps (#31362) 2018-01-22 18:23:40 -05:00
dns.py
env.py
fips.py
local.py
lsb.py
pkg_mgr.py Add autodetection of atomic as a package manager 2017-12-11 21:20:19 -05:00
platform.py Fact collector ordering deps (#31362) 2018-01-22 18:23:40 -05:00
python.py
selinux.py Make ansible_selinux facts a consistent type (#31065) 2017-10-05 09:19:08 -04:00
service_mgr.py Fact collector ordering deps (#31362) 2018-01-22 18:23:40 -05:00
ssh_pub_keys.py
user.py