Explorar o código

Healthcheck correction

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

+ 1 - 1
healthcheck.sh

@@ -2,7 +2,7 @@
 
 containerstart=`stat -c %Z /proc/1`
 curtime=`date +%s`
-if [[ $(($containerstart-$curtime)) -le "180" ]]; then
+if (( curtime-containerstart < 180 )); then
     echo "0"
     exit 0
 fi