From: Zack Cerza Date: Thu, 30 Mar 2023 22:26:45 +0000 (-0600) Subject: bootstrap: apt-get update before installing X-Git-Tag: 1.2.0~115^2 X-Git-Url: http://git.apps.os.sepia.ceph.com/?a=commitdiff_plain;h=d5e3fba72600e2c3c7387c030e26262afd56b8ad;p=teuthology.git bootstrap: apt-get update before installing Signed-off-by: Zack Cerza --- diff --git a/bootstrap b/bootstrap index a87e7c28a8..123a2bb3bc 100755 --- a/bootstrap +++ b/bootstrap @@ -49,6 +49,8 @@ Linux) echo "$0: missing required packages:" 1>&2 echo "$missing" if [ "$install" = true ]; then + echo "Updating metadata..." + sudo apt-get update echo "Installing missing packages..." sudo apt-get -y install $missing else