From b5f7ed2169993252d5e75917bb018551c542f8f9 Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Mon, 22 Mar 2021 23:21:27 +0100 Subject: [PATCH] Manually update expired key for ddebs.ubuntu.com repository Retrieve the latest key, which was extended for another year. See https://bugs.launchpad.net/ubuntu/+source/ubuntu-keyring/+bug/1920640 --- build/tools/before_install.sh | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/build/tools/before_install.sh b/build/tools/before_install.sh index a88f9d2987..8ce44ea704 100755 --- a/build/tools/before_install.sh +++ b/build/tools/before_install.sh @@ -58,6 +58,11 @@ case $(uname -s) in # Note that this command works only on Ubuntu 18.04 LTS and newer. $SUDO apt-get install -y ubuntu-dbgsym-keyring + # The key in the package above is currently (2021-03-22) out of + # date, so get the latest key manually (this is completely + # insecure, of course, but we don't care). + wget -O - http://ddebs.ubuntu.com/dbgsym-release-key.asc | $SUDO apt-key add - + $SUDO apt-get update # Install the symbols to allow LSAN suppression list to work.