use statvfs.f_bavail to match the output of "df -B1"
This commit is contained in:
parent
fc3631b684
commit
fcfc9f5194
1 changed files with 2 additions and 2 deletions
|
@ -561,9 +561,9 @@ class LinuxHardware(Hardware):
|
|||
'device':fields[0],
|
||||
'fstype': fields[2],
|
||||
'options': fields[3],
|
||||
# statvfs
|
||||
# statvfs data
|
||||
'size_total': statvfs_result.f_bsize * statvfs_result.f_blocks,
|
||||
'size_free': statvfs_result.f_bsize * statvfs_result.f_bfree,
|
||||
'size_available': statvfs_result.f_bsize * (statvfs_result.f_bavail),
|
||||
})
|
||||
|
||||
def get_device_facts(self):
|
||||
|
|
Loading…
Reference in a new issue