From 0be03e8056755deaaf1492fa1df38907eade690e Mon Sep 17 00:00:00 2001 From: Erich Eckner Date: Fri, 25 May 2018 09:07:39 +0200 Subject: verbose_flock new: it calls flock and reports about blocking processes on error --- bin/seed-build-list | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'bin/seed-build-list') diff --git a/bin/seed-build-list b/bin/seed-build-list index 923e65a..7540f14 100755 --- a/bin/seed-build-list +++ b/bin/seed-build-list @@ -115,13 +115,13 @@ fi # get locks if ${update}; then exec 9> "${sanity_check_lock_file}" - if ! flock -s ${wait_for_lock} 9; then + if ! verbose_flock -s ${wait_for_lock} 9; then >&2 echo 'Cannot get sanity-check lock.' exit 1 fi exec 8> "${build_list_lock_file}" - if ! flock ${wait_for_lock} 8; then + if ! verbose_flock ${wait_for_lock} 8; then >&2 echo 'Cannot get build-list lock.' exit 1 fi -- cgit v1.2.3-54-g00ecf