From 5cc6d2cd0cb3fbfdd1b26899dc7a5667eab7605e Mon Sep 17 00:00:00 2001 From: Monty Taylor Date: Fri, 6 Jun 2014 08:45:16 -0400 Subject: [PATCH] Update again and retry a failed package install On ubuntu, if we run into an error installing the package, it can be because of transient upstream errors with repo sync state. Although retrying the update won't fix it all of the time, it's low cost enough to be worth a try before we totally give up. Related-bug: 1286818 Change-Id: I522ac0d0bd8f82dc98f386c89f66c2b743efa525 --- functions-common | 36 +++++++++++++++++++++++++----------- 1 file changed, 25 insertions(+), 11 deletions(-) diff --git a/functions-common b/functions-common index cc90c073cf..f0ab5f86e3 100644 --- a/functions-common +++ b/functions-common @@ -881,29 +881,43 @@ function get_packages { # Distro-agnostic package installer # install_package package [package ...] -function install_package { - local xtrace=$(set +o | grep xtrace) - set +o xtrace - if is_ubuntu; then - # if there are transient errors pulling the updates, that's fine. It may - # be secondary repositories that we don't really care about. - [[ "$NO_UPDATE_REPOS" = "True" ]] || apt_get update || /bin/true - NO_UPDATE_REPOS=True +function update_package_repo { + if [[ "NO_UPDATE_REPOS" = "True" ]]; then + return 0 + fi + if is_ubuntu; then + local xtrace=$(set +o | grep xtrace) + set +o xtrace + if [[ "$REPOS_UPDATED" != "True" || "$RETRY_UPDATE" = "True" ]]; then + # if there are transient errors pulling the updates, that's fine. + # It may be secondary repositories that we don't really care about. + apt_get update || /bin/true + REPOS_UPDATED=True + fi $xtrace + fi +} + +function real_install_package { + if is_ubuntu; then apt_get install "$@" elif is_fedora; then - $xtrace yum_install "$@" elif is_suse; then - $xtrace zypper_install "$@" else - $xtrace exit_distro_not_supported "installing packages" fi } +# Distro-agnostic package installer +# install_package package [package ...] +function install_package { + update_package_repo + real_install_package $@ || RETRY_UPDATE=True update_package_repo && real_install_package $@ +} + # Distro-agnostic function to tell if a package is installed # is_package_installed package [package ...] function is_package_installed {