mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-06 13:22:48 +00:00
use statvfs.f_bavail to match the output of "df -B1"
This commit is contained in:
@@ -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):
|
||||
|
||||
Reference in New Issue
Block a user