Continue on mount errors, don't fail the setup module.
This commit is contained in:
parent
99f1852c6d
commit
ecf074865f
1 changed files with 1 additions and 4 deletions
|
@ -633,10 +633,7 @@ class LinuxHardware(Hardware):
|
|||
size_total = statvfs_result.f_bsize * statvfs_result.f_blocks
|
||||
size_available = statvfs_result.f_bsize * (statvfs_result.f_bavail)
|
||||
except OSError, e:
|
||||
if e.errno == errno.ENOENT:
|
||||
pass
|
||||
else:
|
||||
module.fail_json(msg=e.strerror)
|
||||
continue
|
||||
|
||||
self.facts['mounts'].append(
|
||||
{'mount': fields[1],
|
||||
|
|
Loading…
Reference in a new issue