Compare commits

...

4 Commits

Author SHA1 Message Date
oleg d32bf31f4a fix 2024-10-30 15:34:19 -04:00
oleg 65c87f97e6 fix 2024-10-30 15:29:10 -04:00
oleg ae79f940fb update for storage check 2024-10-30 15:21:38 -04:00
oleg 80ae780f02 fix 2024-10-29 19:51:24 -04:00
4 changed files with 5 additions and 34 deletions
File diff suppressed because one or more lines are too long
+1 -1
View File
@@ -50,7 +50,7 @@ ContainerName=alpaca_hbar
LogDir=/home/cvtt/prod/logs
# ----- Settings
while getopts ":d:S:L:" opt; do
while getopts ":d:N:L:" opt; do
case ${opt} in
d )
date_to_load=$OPTARG
+1 -1
View File
@@ -1 +1 @@
1.7.3,alpaca md HBAR
1.7.4.fx2,minor update for storage check
+3 -1
View File
@@ -69,7 +69,9 @@ 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} -x devtmpfs"
Cmd="${Cmd} | grep -v Filesystem\""
IFS=$'\n' ; lines=$(eval ${Cmd})