changed get_mount_facts to ignore mount types 'none'
This commit is contained in:
parent
e204394c2c
commit
f76043f404
1 changed files with 11 additions and 10 deletions
|
@ -547,6 +547,7 @@ class LinuxHardware(Hardware):
|
|||
for line in mtab.split('\n'):
|
||||
if line.startswith('/'):
|
||||
fields = line.rstrip('\n').split()
|
||||
if(fields[2] != 'none'):
|
||||
statvfs_result = os.statvfs(fields[1])
|
||||
self.facts['mounts'].append(
|
||||
{'mount': fields[1],
|
||||
|
|
Loading…
Reference in a new issue