From ead9baa3cdc121818e3ace68838af4af34fade1e Mon Sep 17 00:00:00 2001 From: Clark Boylan Date: Tue, 14 Feb 2023 13:40:31 -0800 Subject: [PATCH] Fix docker.gpg.asc path in sources.list entry The previous change omitted the .asc suffix which is required since we are writing this file out to that name. Without this `apt-get update` fails due to being unable to verify the sources. Change-Id: Ide9b02575967283ab7309071d9e12af5cdb15cc9 --- playbooks/roles/install-docker/templates/sources.list.j2 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/playbooks/roles/install-docker/templates/sources.list.j2 b/playbooks/roles/install-docker/templates/sources.list.j2 index a4c01b4d56..6278f93371 100644 --- a/playbooks/roles/install-docker/templates/sources.list.j2 +++ b/playbooks/roles/install-docker/templates/sources.list.j2 @@ -1 +1 @@ -deb [signed-by=/etc/apt/keyrings/docker.gpg] https://download.docker.com/linux/ubuntu {{ ansible_lsb.codename }} {{ docker_update_channel }} +deb [signed-by=/etc/apt/keyrings/docker.gpg.asc] https://download.docker.com/linux/ubuntu {{ ansible_lsb.codename }} {{ docker_update_channel }}