Commit 73a12b04 by Michael Vogt

add "size_{total,free}" to the "mount" facts

parent e75ab08e
......@@ -555,7 +555,16 @@ class LinuxHardware(Hardware):
for line in mtab.split('\n'):
if line.startswith('/'):
fields = line.rstrip('\n').split()
self.facts['mounts'].append({'mount': fields[1], 'device':fields[0], 'fstype': fields[2], 'options': fields[3]})
statvfs_result = os.statvfs(fields[1])
self.facts['mounts'].append(
{'mount': fields[1],
'device':fields[0],
'fstype': fields[2],
'options': fields[3],
# statvfs
'size_total': statvfs_result.f_bsize * statvfs_result.f_blocks,
'size_free': statvfs_result.f_bsize * statvfs_result.f_bfree,
})
def get_device_facts(self):
self.facts['devices'] = {}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment