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})