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/show-dependencies | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'bin/show-dependencies') diff --git a/bin/show-dependencies b/bin/show-dependencies index ede0f78..111a41b 100755 --- a/bin/show-dependencies +++ b/bin/show-dependencies @@ -41,13 +41,13 @@ if pgrep -f '^\S+ '"$0"'.' | \ fi exec 9> "${work_dir}/${0##*/}.lock" -if ! flock -n 9; then +if ! verbose_flock -n 9; then >&2 echo 'Cannot get show-dependencies lock.' exit fi exec 8> "${sanity_check_lock_file}" -if ! flock -s -n 8; then +if ! verbose_flock -s -n 8; then >&2 echo 'Cannot get sanity-check lock.' exit fi -- cgit v1.2.3-54-g00ecf