Merge "Check for file existance in file modification check"

This commit is contained in:
Zuul 2019-04-22 15:05:32 +00:00 committed by Gerrit Code Review
commit 29abfb3cb8
1 changed files with 5 additions and 0 deletions

View File

@ -49,6 +49,11 @@ healthcheck_file_modification () {
file_path=$1
limit_seconds=$2
# if the file doesn't exist, return 1
if [ ! -f $file_path ]; then
echo "${file_path} does not exist for file modification check"
return 1
fi
curr_time=$(date +%s)
last_mod=$(stat -c '%Y' $file_path)
limit_epoch=$(( curr_time-limit_seconds ))