Merge "Fix race condition with systemd's apt initialization"

This commit is contained in:
Jenkins 2017-01-19 13:18:32 +00:00 committed by Gerrit Code Review
commit c85f5e2958
1 changed files with 5 additions and 0 deletions

View File

@ -4,9 +4,14 @@
declare -a DEPS=('apt' 'netaddr' 'netifaces' 'pip' 'yaml')
wait_for_dpkg_unlock() {
while $(fuser -s /var/lib/dpkg/lock); do sleep .5;done
}
check_and_install() {
pkg="${1}-${2}"
if ! dpkg -s ${pkg} 2>&1 > /dev/null; then
wait_for_dpkg_unlock
apt-get -y install ${pkg}
fi
}