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
This commit is contained in:
Clark Boylan 2023-02-14 13:40:31 -08:00
parent 0f4994639c
commit ead9baa3cd
1 changed files with 1 additions and 1 deletions

View File

@ -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 }}