Skip to content

Commit

Permalink
[build] Add environment when using dpkg hook to avoid lock loop. (#13233
Browse files Browse the repository at this point in the history
)

Why I did it
In some cases, dpkg will call dpkg to validate version.
dpkg hook will get stuck in a loop to lock.

How I did it
How to verify it
  • Loading branch information
liushilongbuaa authored Jan 4, 2023
1 parent 33bf592 commit 933bf06
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion src/sonic-build-hooks/hooks/dpkg
100644 → 100755
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,16 @@
. /usr/local/share/buildinfo/scripts/buildinfo_base.sh
REAL_COMMAND=$(get_command dpkg)
COMMAND_INFO="Locked by command: $REAL_COMMAND $@"
lock_result=$(acquire_apt_installation_lock "$COMMAND_INFO" )
NEED_RELEASE_LOCK=n
if [[ "$DPKG_HOOK_LOCKED" != "y" ]];then
lock_result=$(acquire_apt_installation_lock "$COMMAND_INFO" )
export DPKG_HOOK_LOCKED=y
NEED_RELEASE_LOCK=y
fi
$REAL_COMMAND "$@"
command_result=$?
if [[ "$NEED_RELEASE_LOCK" == "y" ]];then
unset DPKG_HOOK_LOCKED
fi
[ "$lock_result" == y ] && release_apt_installation_lock
exit $command_result

0 comments on commit 933bf06

Please sign in to comment.