diff options
author | Erich Eckner <git@eckner.net> | 2017-10-27 15:35:58 +0200 |
---|---|---|
committer | Erich Eckner <git@eckner.net> | 2017-10-27 15:35:58 +0200 |
commit | 1c26d16709872f97dfce4615a31e472fa0afb3fb (patch) | |
tree | a71c15adfd6b11f7321d815a526cb00873509ffc /bin/get-assignment | |
parent | 1dfef01eaa3913ae4281d40c1477a56143509f6b (diff) | |
download | builder-1c26d16709872f97dfce4615a31e472fa0afb3fb.tar.xz |
add shared lock for sanity-check
Diffstat (limited to 'bin/get-assignment')
-rwxr-xr-x | bin/get-assignment | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/bin/get-assignment b/bin/get-assignment index b78ca9d..11aaf94 100755 --- a/bin/get-assignment +++ b/bin/get-assignment @@ -66,6 +66,12 @@ if ! flock -n 9; then exit 1 fi +exec 8> "${sanity_check_lock_file}" +if ! flock -s -n 8; then + >&2 echo 'come back (shortly) later - sanity-check running.' + exit 1 +fi + clean_up() { rm -f "${build_list_lock_file}" rm -rf --one-file-system "${tmp_dir}" |