parent
7a9b8e43da
commit
74c83a91ed
1 changed files with 21 additions and 0 deletions
|
@ -173,6 +173,7 @@ class Facts(object):
|
||||||
self.get_cmdline()
|
self.get_cmdline()
|
||||||
self.get_public_ssh_host_keys()
|
self.get_public_ssh_host_keys()
|
||||||
self.get_selinux_facts()
|
self.get_selinux_facts()
|
||||||
|
self.get_caps_facts()
|
||||||
self.get_fips_facts()
|
self.get_fips_facts()
|
||||||
self.get_pkg_mgr_facts()
|
self.get_pkg_mgr_facts()
|
||||||
self.get_service_mgr_facts()
|
self.get_service_mgr_facts()
|
||||||
|
@ -184,6 +185,7 @@ class Facts(object):
|
||||||
self.get_dns_facts()
|
self.get_dns_facts()
|
||||||
self.get_python_facts()
|
self.get_python_facts()
|
||||||
|
|
||||||
|
|
||||||
def populate(self):
|
def populate(self):
|
||||||
return self.facts
|
return self.facts
|
||||||
|
|
||||||
|
@ -697,6 +699,25 @@ class Facts(object):
|
||||||
except OSError:
|
except OSError:
|
||||||
self.facts['selinux']['type'] = 'unknown'
|
self.facts['selinux']['type'] = 'unknown'
|
||||||
|
|
||||||
|
def get_caps_facts(self):
|
||||||
|
capsh_path = module.get_bin_path('capsh')
|
||||||
|
if capsh_path:
|
||||||
|
rc, out, err = module.run_command([capsh_path, "--print"])
|
||||||
|
enforced_caps = []
|
||||||
|
enforced = 'NA'
|
||||||
|
for line in out.split('\n'):
|
||||||
|
if len(line) < 1:
|
||||||
|
continue
|
||||||
|
if line.startswith('Current:'):
|
||||||
|
if line.split(':')[1].strip() == '=ep':
|
||||||
|
enforced = 'False'
|
||||||
|
else:
|
||||||
|
enforced = 'True'
|
||||||
|
enforced_caps = [i.strip() for i in line.split('=')[1].split(',')]
|
||||||
|
|
||||||
|
self.facts['system_capabilities_enforced'] = enforced
|
||||||
|
self.facts['system_capabilities'] = enforced_caps
|
||||||
|
|
||||||
|
|
||||||
def get_fips_facts(self):
|
def get_fips_facts(self):
|
||||||
self.facts['fips'] = False
|
self.facts['fips'] = False
|
||||||
|
|
Loading…
Reference in a new issue