소스 검색

Healthcheck correction

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