Added partition size information in debug information printed

This commit is contained in:
Anton Hvornum 2019-06-09 20:46:23 +02:00
parent 55304a7cab
commit f7cb0b819a
1 changed files with 2 additions and 1 deletions

View File

@ -302,8 +302,9 @@ def grab_partitions(dev):
r = json.loads(o.decode('UTF-8'))
if len(r['blockdevices']) and 'children' in r['blockdevices'][0]:
for part in r['blockdevices'][0]['children']:
size = os.statvfs(dev + part['name'][len(drive_name):])
parts[part['name'][len(drive_name):]] = {
# TODO: Grab partition info and store here?
'size' : size.f_frsize * size.f_bavail
}
return parts