From 8199309cf6f235841525f971634e3ca5063ee827 Mon Sep 17 00:00:00 2001 From: Kenyon Ralph Date: Tue, 27 Aug 2024 12:21:19 -0700 Subject: [PATCH] platform: Debian: don't install apt-transport-https This package is not needed and does nothing on the versions of Debian-family operating systems that we support (only non-EOL versions; see #1871, for other removal of EOL Debian-family code). --- lib/beaker/platform.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/beaker/platform.rb b/lib/beaker/platform.rb index 111e6a6ba..901336b10 100644 --- a/lib/beaker/platform.rb +++ b/lib/beaker/platform.rb @@ -120,7 +120,7 @@ def base_packages when 'el' @version.to_i >= 8 ? ['curl-minimal', 'iputils'] : %w[curl] when 'debian' - %w[curl lsb-release apt-transport-https] + %w[curl lsb-release] when 'freebsd' %w[curl perl5|perl] when 'solaris'