Explorar el Código

Healthcheck correction

Vadim Surkov hace 6 años
padre
commit
18fda2fc36
Se han modificado 1 ficheros con 1 adiciones y 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