index : builder | |
Archlinux32 build system | gitolite user |
summaryrefslogtreecommitdiff |
-rwxr-xr-x | bin/delete-packages | 6 |
diff --git a/bin/delete-packages b/bin/delete-packages index 520b664..0065752 100755 --- a/bin/delete-packages +++ b/bin/delete-packages @@ -77,19 +77,19 @@ fi if ! ${no_action}; then # exec 9> "${build_list_lock_file}" -# if ! flock ${block_flag} 9; then +# if ! verbose_flock ${block_flag} 9; then # >&2 echo 'come back (shortly) later - I cannot lock build list.' # exit 0 # fi exec 8> "${package_database_lock_file}" - if ! flock ${block_flag} 8; then + if ! verbose_flock ${block_flag} 8; then >&2 echo 'come back (shortly) later - I cannot lock package database.' exit 0 fi exec 7> "${sanity_check_lock_file}" - if ! flock -s ${block_flag} 7; then + if ! verbose_flock -s ${block_flag} 7; then >&2 echo 'come back (shortly) later - sanity-check running.' exit 0 fi |