From ae79f940fb9afe2dce8b2a5e439306d700afc242 Mon Sep 17 00:00:00 2001 From: Oleg Sheynin Date: Wed, 30 Oct 2024 15:21:38 -0400 Subject: [PATCH] update for storage check --- doc/CVTT Hosts Map.drawio | 31 --------------------- release_version.txt | 2 +- scripts/healthcheck/storage_health_check.sh | 3 +- 3 files changed, 3 insertions(+), 33 deletions(-) delete mode 100644 doc/CVTT Hosts Map.drawio diff --git a/doc/CVTT Hosts Map.drawio b/doc/CVTT Hosts Map.drawio deleted file mode 100644 index b0037ab..0000000 --- a/doc/CVTT Hosts Map.drawio +++ /dev/null @@ -1,31 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/release_version.txt b/release_version.txt index 844e947..40dbee1 100644 --- a/release_version.txt +++ b/release_version.txt @@ -1 +1 @@ -1.7.3.fx1,alpaca md HBAR +1.7.4,minor update for storage check diff --git a/scripts/healthcheck/storage_health_check.sh b/scripts/healthcheck/storage_health_check.sh index a453d82..8b05c7f 100755 --- a/scripts/healthcheck/storage_health_check.sh +++ b/scripts/healthcheck/storage_health_check.sh @@ -69,7 +69,8 @@ function storage_check() { Cmd="ssh -p ${port} $host" Cmd="${Cmd} eval \"df -hTl" Cmd="${Cmd} -x squashfs" - Cmd="${Cmd} | grep -v tmpfs" + Cmd="${Cmd} -x tmpfs" + Cmd="${Cmd} -x vfat" Cmd="${Cmd} | grep -v Filesystem\"" IFS=$'\n' ; lines=$(eval ${Cmd})