From 3819004c2cb3893bfa136f3c44a5783c42cd2a8d Mon Sep 17 00:00:00 2001 From: Julian Andres Klode Date: Tue, 16 May 2017 23:18:07 +0200 Subject: apt.systemd.daily: Drop the LOCKFD variable Gbp-Dch: ignore --- debian/apt.systemd.daily | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/debian/apt.systemd.daily b/debian/apt.systemd.daily index d2a0bfbed..0ecbde219 100755 --- a/debian/apt.systemd.daily +++ b/debian/apt.systemd.daily @@ -291,17 +291,14 @@ debug_echo() } # ------------------------ main ---------------------------- - -# Maintain a lock on fd 3, so we can't run the script twice at the same -# time. - if [ "$1" = "lock_is_held" ]; then shift else - LOCKFD=3 + # Maintain a lock on fd 3, so we can't run the script twice at the same + # time. eval $(apt-config shell StateDir Dir::State/d) exec 3>${StateDir}/daily_lock - if ! flock -w 3600 $LOCKFD; then + if ! flock -w 3600 3; then echo "E: Could not acquire lock" >&2 exit 1 fi -- cgit v1.2.3