#!/bin/bash -e # A temporary workaround for https://github.com/Azure/azure-linux-extensions/issues/1238 prefix=/usr/local/bin for real_tool in /usr/bin/apt /usr/bin/apt-get /usr/bin/apt-fast /usr/bin/apt-key;do tool=`basename $real_tool` cat >$prefix/$tool <\$err result=\$? cat \$err >&2 # no errors, continue test \$result -eq 0 && break retry=false if grep -q 'Could not get lock' \$err;then # apt db locked needs retry retry=true elif grep -q 'Could not open file /var/lib/apt/lists' \$err;then # apt update is not completed, needs retry retry=true elif grep -q 'IPC connect call failed' \$err;then # the delay should help with gpg-agent not ready retry=true fi rm \$err if [ \$retry = false ]; then break fi sleep 5 echo "...retry \$i" i=\$((i + 1)) done EOT chmod +x $prefix/$tool done