From: Tom Clegg Date: Tue, 29 Mar 2022 13:51:19 +0000 (-0400) Subject: 18700: Update perl-modules package name for debian 11. X-Git-Tag: 2.5.0~214^2~10 X-Git-Url: https://git.arvados.org/arvados.git/commitdiff_plain/39ccb1fe43f8ccfba43879ce1a3a17f9520463b6 18700: Update perl-modules package name for debian 11. Arvados-DCO-1.1-Signed-off-by: Tom Clegg --- 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 {