From 621cd0a2fc6dd8c1b63eeb687b4c4b7efb130f14 Mon Sep 17 00:00:00 2001 From: Tom Clegg Date: Tue, 17 Oct 2023 14:54:57 -0400 Subject: [PATCH] 21055: Add debian 12 codename to fix docker install. Arvados-DCO-1.1-Signed-off-by: Tom Clegg --- lib/install/deps.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/install/deps.go b/lib/install/deps.go index 81b2fad921..c4f104f30a 100644 --- a/lib/install/deps.go +++ b/lib/install/deps.go @@ -240,6 +240,8 @@ func (inst *installCommand) RunCommand(prog string, args []string, stdin io.Read codename = "buster" case 11: codename = "bullseye" + case 12: + codename = "bookworm" default: err = fmt.Errorf("don't know how to install docker-ce for debian %d", osv.Major) return 1 -- 2.30.2