mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-08 06:12:51 +00:00
updated capabilities to new way of module ref
This commit is contained in:
@@ -700,9 +700,9 @@ class Facts(object):
|
|||||||
self.facts['selinux']['type'] = 'unknown'
|
self.facts['selinux']['type'] = 'unknown'
|
||||||
|
|
||||||
def get_caps_facts(self):
|
def get_caps_facts(self):
|
||||||
capsh_path = module.get_bin_path('capsh')
|
capsh_path = self.module.get_bin_path('capsh')
|
||||||
if capsh_path:
|
if capsh_path:
|
||||||
rc, out, err = module.run_command([capsh_path, "--print"])
|
rc, out, err = self.module.run_command([capsh_path, "--print"])
|
||||||
enforced_caps = []
|
enforced_caps = []
|
||||||
enforced = 'NA'
|
enforced = 'NA'
|
||||||
for line in out.split('\n'):
|
for line in out.split('\n'):
|
||||||
@@ -1105,9 +1105,9 @@ class LinuxHardware(Hardware):
|
|||||||
uuids = dict()
|
uuids = dict()
|
||||||
self.facts['mounts'] = []
|
self.facts['mounts'] = []
|
||||||
bind_mounts = []
|
bind_mounts = []
|
||||||
findmntPath = module.get_bin_path("findmnt")
|
findmntPath = self.module.get_bin_path("findmnt")
|
||||||
if findmntPath:
|
if findmntPath:
|
||||||
rc, out, err = module.run_command("%s -lnur" % ( findmntPath ), use_unsafe_shell=True)
|
rc, out, err = self.module.run_command("%s -lnur" % ( findmntPath ), use_unsafe_shell=True)
|
||||||
if rc == 0:
|
if rc == 0:
|
||||||
# find bind mounts, in case /etc/mtab is a symlink to /proc/mounts
|
# find bind mounts, in case /etc/mtab is a symlink to /proc/mounts
|
||||||
for line in out.split('\n'):
|
for line in out.split('\n'):
|
||||||
|
|||||||
Reference in New Issue
Block a user