Explorar o código

missed double quotas in healthcheck

Vadim Surkov %!s(int64=5) %!d(string=hai) anos
pai
achega
5769054cdb
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  1. 1 1
      healthcheck.sh

+ 1 - 1
healthcheck.sh

@@ -8,7 +8,7 @@ _LOGDIR="/opt/analis/log"
 _LOGFILE=$( ls -t -d -1 ${_LOGDIR}/Analis* | head -1 )
 
 #Check difference between system time and latest modified file in logdir - if it's greater then $_LOGDIFF, then container is not healty
-if [[  $[ $(date +%s) - $(stat -c %Y ${_LOGFILE}) ] -gt ${_LOGDIFF} ]]; then
+if [[  $[ $(date +%s) - $(stat -c %Y "${_LOGFILE}"") ] -gt ${_LOGDIFF} ]]; then
    echo $(date)" The difference between system time and latest modified file in logdir is "$[ $(date +%s) - $(stat -c %Y ${_LOGFILE}) ]" The service seems to be unhealty." >> ${_LOGDIR}/healthcheck.log
    exit 1
 fi