From 2fb45c3283b2b7563f66c23b6342e43eaeea441a Mon Sep 17 00:00:00 2001 From: Stephan Wendel Date: Fri, 12 Aug 2022 20:12:32 +0200 Subject: [PATCH] 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 --- libs/logging.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/logging.sh b/libs/logging.sh index 967c648..46f003c 100755 --- a/libs/logging.sh +++ b/libs/logging.sh @@ -152,7 +152,7 @@ function print_host { ## Avail mem log_msg "Host Info: Available Memory: ${memtotal}" ## Avail disk size - log_msg "Host Info: Diskspace (used / total): ${disksize}" + log_msg "Host Info: Diskspace (avail. / total): ${disksize}" fi }