adjusted for the posibolity of lsblk not existing for fact gathering

pull/10747/head
Brian Coca 10 years ago
parent 1f7d23fc18
commit ec01e071d8

@ -885,13 +885,14 @@ class LinuxHardware(Hardware):
size_available = statvfs_result.f_bsize * (statvfs_result.f_bavail)
except OSError, e:
continue
uuid = 'NA'
lsblkPath = module.get_bin_path("lsblk")
rc, out, err = module.run_command("%s -ln --output UUID %s" % (lsblkPath, fields[0]), use_unsafe_shell=True)
if lsblkPath:
rc, out, err = module.run_command("%s -ln --output UUID %s" % (lsblkPath, fields[0]), use_unsafe_shell=True)
if rc == 0:
uuid = out.strip()
else:
uuid = 'NA'
if rc == 0:
uuid = out.strip()
self.facts['mounts'].append(
{'mount': fields[1],

Loading…
Cancel
Save