Skip to content
Snippets Groups Projects
Verified Commit 12e4c8da authored by Nicolas KAROLAK's avatar Nicolas KAROLAK
Browse files

check apt lock state

parent c6d1ac4b
No related branches found
No related tags found
No related merge requests found
......@@ -8,6 +8,19 @@ DEBIAN_FRONTEND=noninteractive
echo "Testing apt-get install."
lock_timeout=120
lock_counter=0
tput sc
while fuser /var/lib/dpkg/lock >/dev/null 2>&1 ; do
sleep 1 && echo $lock_counter && (( lock_counter++ ))
tput rc
if (( $lock_counter > $lock_timeout )); then
echo "APT is reported as locked for more than $lock_timeout seconds now..."
echo "Either a big upgrade is running or it is hung, please take a look"
exit 1
fi
done
echo "Clean repository."
apt-get clean
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment