0
votes
race condition in the common lock on file?
Try flock command:
exec 200>"$LOCK_FILE"
flock -e -n 200 || exit 1
It will exit if the lock file is locked. It is atomic and it will work over recent version of …
