From 39ccb1fe43f8ccfba43879ce1a3a17f9520463b6 Mon Sep 17 00:00:00 2001 From: Tom Clegg Date: Tue, 29 Mar 2022 09:51:19 -0400 Subject: [PATCH] 18700: Update perl-modules package name for debian 11. Arvados-DCO-1.1-Signed-off-by: Tom Clegg --- lib/install/deps.go | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/lib/install/deps.go b/lib/install/deps.go index 2aa77f0a28..b38db99192 100644 --- a/lib/install/deps.go +++ b/lib/install/deps.go @@ -172,7 +172,6 @@ func (inst *installCommand) RunCommand(prog string, args []string, stdin io.Read "make", "net-tools", "pandoc", - "perl-modules", "pkg-config", "postgresql", "postgresql-contrib", @@ -203,9 +202,9 @@ func (inst *installCommand) RunCommand(prog string, args []string, stdin io.Read } switch { case osv.Debian && osv.Major >= 10: - pkgs = append(pkgs, "libcurl4") + pkgs = append(pkgs, "libcurl4", "perl-modules-5.32") default: - pkgs = append(pkgs, "libcurl3") + pkgs = append(pkgs, "libcurl3", "perl-modules") } cmd := exec.CommandContext(ctx, "apt-get") if inst.EatMyData { -- 2.30.2