From ecad907fd88ecdd15a9c803bdae614714dd27dfb Mon Sep 17 00:00:00 2001 From: Ian Wienand Date: Thu, 30 Apr 2020 08:38:41 +1000 Subject: [PATCH] install-docker: remove arch match There's no need to force the arch match in the sources.list; this breaks arm64 installs. Change-Id: If7bbfc567e117d3dabc3ba97a8701fa7b9db02f3 --- 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 7cf0b6843e..fe81cc70a6 100644 --- a/playbooks/roles/install-docker/templates/sources.list.j2 +++ b/playbooks/roles/install-docker/templates/sources.list.j2 @@ -1 +1 @@ -deb [arch=amd64] https://download.docker.com/linux/ubuntu {{ ansible_lsb.codename }} {{ docker_update_channel }} +deb https://download.docker.com/linux/ubuntu {{ ansible_lsb.codename }} {{ docker_update_channel }}