mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-08-11 16:44:22 -07:00
Continue on mount errors, don't fail the setup module.
This commit is contained in:
parent
f0eafff1b4
commit
fc9aa5f014
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_total = statvfs_result.f_bsize * statvfs_result.f_blocks
|
||||||
size_available = statvfs_result.f_bsize * (statvfs_result.f_bavail)
|
size_available = statvfs_result.f_bsize * (statvfs_result.f_bavail)
|
||||||
except OSError, e:
|
except OSError, e:
|
||||||
if e.errno == errno.ENOENT:
|
continue
|
||||||
pass
|
|
||||||
else:
|
|
||||||
module.fail_json(msg=e.strerror)
|
|
||||||
|
|
||||||
self.facts['mounts'].append(
|
self.facts['mounts'].append(
|
||||||
{'mount': fields[1],
|
{'mount': fields[1],
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue