From f7c81ce855c6ea84d1f7cb314cd58bd7af86fb3a Mon Sep 17 00:00:00 2001 From: Kevin Morris Date: Mon, 24 Jan 2022 14:54:11 -0800 Subject: [PATCH] Revert "docker: simplify keyring update" This reverts commit 2f294480a9db0b180c5205d22f0e264697b3e289. --- docker/scripts/install-deps.sh | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/docker/scripts/install-deps.sh b/docker/scripts/install-deps.sh index 72b291c6..ced18c81 100755 --- a/docker/scripts/install-deps.sh +++ b/docker/scripts/install-deps.sh @@ -5,7 +5,11 @@ set -eou pipefail # Update and rollout archlinux-keyring keys. -pacman -Sy --noconfirm --noprogressbar --cachedir .pkg-cache archlinux-keyring +pacman-key --init +pacman-key --updatedb +pacman-key --populate + +pacman -Sy --noconfirm --noprogressbar archlinux-keyring # Install other OS dependencies. pacman -Syu --noconfirm --noprogressbar \