From 1c26d16709872f97dfce4615a31e472fa0afb3fb Mon Sep 17 00:00:00 2001 From: Erich Eckner Date: Fri, 27 Oct 2017 15:35:58 +0200 Subject: add shared lock for sanity-check --- bin/get-package-updates | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'bin/get-package-updates') diff --git a/bin/get-package-updates b/bin/get-package-updates index c524080..83b0107 100755 --- a/bin/get-package-updates +++ b/bin/get-package-updates @@ -128,6 +128,12 @@ if ! flock ${block_flag} 9; then exit fi +exec 8> "${sanity_check_lock_file}" +if ! flock -s ${block_flag} 8; then + >&2 echo 'come back (shortly) later - sanity-check running.' + exit +fi + echo 'Check modified packages from the last update, and put them to the build list.' # Check modified packages from the last update, and put them to the build list. -- cgit v1.2.3-54-g00ecf