mirror of
https://github.com/armbian/build
synced 2025-09-24 19:47:06 +07:00
Do not pre-install obsolete apt-transport-https
Since APT v1.6, HTTPS capabilities are part of the apt core package, hence apt-transport-https is not required anymore. This version is part of Debian since Stretch and Ubuntu since Bionic. The apt-transport-https still exists as transitional dummy package only. - Changelog: https://salsa.debian.org/apt-team/apt/-/raw/main/debian/changelog - Debian package: https://packages.debian.org/apt-transport-https - Ubuntu package: https://packages.ubuntu.com/apt-transport-https Signed-off-by: MichaIng <micha@dietpi.com>
This commit is contained in:
@@ -171,7 +171,7 @@ if [[ "${1}" == docker && -f /etc/debian_version && -z "$(command -v docker)" ]]
|
||||
echo "deb [arch=amd64] https://download.docker.com/linux/${codeid} ${codename} edge" > /etc/apt/sources.list.d/docker.list
|
||||
|
||||
# minimal set of utilities that are needed for prep
|
||||
packages=("curl" "gnupg" "apt-transport-https")
|
||||
packages=("curl" "gnupg")
|
||||
for i in "${packages[@]}"
|
||||
do
|
||||
[[ ! $(command -v "${i}") ]] && install_packages+=${i}" "
|
||||
|
||||
Reference in New Issue
Block a user