From ce4d2af94fd509835d1c0f61fdb18c3006554d5f Mon Sep 17 00:00:00 2001 From: Guillaume Raffy Date: Mon, 9 May 2022 18:50:35 +0200 Subject: [PATCH] reverted last change because it caused more problems than good --- cluster/disk-watchdog.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/cluster/disk-watchdog.sh b/cluster/disk-watchdog.sh index 5f0b322..a3cc4b8 100755 --- a/cluster/disk-watchdog.sh +++ b/cluster/disk-watchdog.sh @@ -149,8 +149,9 @@ function check_disk_usage() log "listing usage of $shared_disk_root into $disk_usage_report_file_path" du -sm ${shared_disk_root}/* | tee "${tmp_disk_usage_report_file_path}" - cat ${tmp_disk_usage_report_file_path} | sed "s|${shared_disk_root}|${disk_public_path}|g" | awk '{ printf("%s ", $1); system("stat --printf=''%U'' " $2); printf(" %s\n", $2); }' > "${disk_usage_report_file_path}" + cat ${tmp_disk_usage_report_file_path} | awk '{ printf("%s ", $1); system("stat --printf=''%U'' " $2); printf(" %s\n", $2); }' > "${disk_usage_report_file_path}" rm "${tmp_disk_usage_report_file_path}" + # sed "s|${shared_disk_root}|${disk_public_path}|g" | local disk_fullness=$(sheet_get_column $disk_global_usage_report_file_path 'Use%' | sed 's/%//') local disk_size_in_mb=$(sheet_get_column $disk_global_usage_report_file_path '1M-blocks' | sed 's/%//')