This repository has been archived by the owner on Aug 19, 2024. It is now read-only.
forked from heroku/base-images
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Heroku-24: Migrate away from transitional packages (heroku#279)
Several of the packages being installed were actually transitional packages, that is, the package itself is either a complete no-op (since the functionality of the package is no needed), or else the package only exists to depend on another package of a new name (to support people who are still installing the package by its old name). For the former, we can drop the dependency entirely, and for the latter we should use the new package name directly. Specifically: - `apt-transport-https`: APT supports HTTPS natively (and has since Ubuntu 18.04), so this package doesn't do anything: https://packages.ubuntu.com/focal/apt-transport-https https://packages.ubuntu.com/focal/all/apt-transport-https/filelist - `dnsutils` -> `bind9-dnsutils`: https://packages.ubuntu.com/noble/dnsutils https://packages.ubuntu.com/noble/all/dnsutils/filelist - `bind9-host`: Is part of `bind9-dnsutils`, so we don't need to depoend on it directly: https://packages.ubuntu.com/noble/bind9-dnsutils - `telnet` -> `inetutils-telnet`: https://packages.ubuntu.com/noble/telnet https://packages.ubuntu.com/noble/all/telnet/filelist Note: The `libgeoip1` -> `libgeoip1t64` rename is to make CI pass since the package has been renamed upstream as part of the 64-bit time_t transition: https://lists.debian.org/debian-devel-announce/2024/02/msg00005.html
- Loading branch information
Showing
5 changed files
with
5 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters