fix: used wrong terminology for diskspace

This fixes error that available diskspace is shown as used diskspace.

In reallity it should show available and using available instead of
used.

Thanks to mallcop for reporting

Signed-off-by: Stephan Wendel <me@stephanwe.de>
This commit is contained in:
Stephan Wendel 2022-08-12 20:12:32 +02:00
parent a3fba6105f
commit 2fb45c3283
No known key found for this signature in database
GPG Key ID: F465B83ACBA45639

View File

@ -152,7 +152,7 @@ function print_host {
## Avail mem ## Avail mem
log_msg "Host Info: Available Memory: ${memtotal}" log_msg "Host Info: Available Memory: ${memtotal}"
## Avail disk size ## Avail disk size
log_msg "Host Info: Diskspace (used / total): ${disksize}" log_msg "Host Info: Diskspace (avail. / total): ${disksize}"
fi fi
} }