From 3dbf603d12a14d97473dab3be20b7daac9c9dc3f Mon Sep 17 00:00:00 2001 From: snickerjp Date: Wed, 31 Dec 2025 13:20:48 +0000 Subject: [PATCH] Remove software-properties-common from Ubuntu installation The software-properties-common package is not actually used in the setup script and can be safely removed from Ubuntu installation as well. Tested on Ubuntu 22.04 - setup script runs successfully without this package. --- setup.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.sh b/setup.sh index 617c8bb7..c294d343 100755 --- a/setup.sh +++ b/setup.sh @@ -142,7 +142,7 @@ install_docker_ubuntu() { export DEBIAN_FRONTEND=noninteractive apt-get -qqy update DEBIAN_FRONTEND=noninteractive sudo -E 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