Vadim Surkov пре 6 година
родитељ
комит
18fda2fc36
1 измењених фајлова са 1 додато и 1 уклоњено
  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