From a40ef69d3276bb19cf44bfe9a790aa006a2a103a Mon Sep 17 00:00:00 2001 From: Steve Smith Date: Wed, 31 Dec 2025 11:56:20 +1100 Subject: [PATCH] Remove the software-properties-common package which is not present in trixie. Debian Trixie (current release) does not contain software-properties-common due to a security vulnerability: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1038747 The setup script does not actually use this package, so it can be removed. --- setup.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.sh b/setup.sh index 01c22afe..617c8bb7 100755 --- a/setup.sh +++ b/setup.sh @@ -76,7 +76,7 @@ install_docker_debian() { export DEBIAN_FRONTEND=noninteractive apt-get -qqy update DEBIAN_FRONTEND=noninteractive apt-get -qqy -o Dpkg::Options::="--force-confdef" -o Dpkg::Options::="--force-confold" upgrade - apt-get -yy install apt-transport-https ca-certificates curl software-properties-common pwgen gnupg + apt-get -yy install apt-transport-https ca-certificates curl pwgen gnupg # Add Docker GPG signing key if [ ! -f "/etc/apt/keyrings/docker.gpg" ]; then