mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
updated capabilities to new way of module ref
This commit is contained in:
parent
b63238ff2c
commit
a5a6bcfbbf
1 changed files with 6 additions and 6 deletions
|
@ -700,9 +700,9 @@ class Facts(object):
|
|||
self.facts['selinux']['type'] = 'unknown'
|
||||
|
||||
def get_caps_facts(self):
|
||||
capsh_path = module.get_bin_path('capsh')
|
||||
capsh_path = self.module.get_bin_path('capsh')
|
||||
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 = 'NA'
|
||||
for line in out.split('\n'):
|
||||
|
@ -1105,9 +1105,9 @@ class LinuxHardware(Hardware):
|
|||
uuids = dict()
|
||||
self.facts['mounts'] = []
|
||||
bind_mounts = []
|
||||
findmntPath = module.get_bin_path("findmnt")
|
||||
findmntPath = self.module.get_bin_path("findmnt")
|
||||
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:
|
||||
# find bind mounts, in case /etc/mtab is a symlink to /proc/mounts
|
||||
for line in out.split('\n'):
|
||||
|
|
Loading…
Reference in a new issue