Skip to content

Commit 3dbf603

Browse files
committed
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.
1 parent 39abe4e commit 3dbf603

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

setup.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ install_docker_ubuntu() {
142142
export DEBIAN_FRONTEND=noninteractive
143143
apt-get -qqy update
144144
DEBIAN_FRONTEND=noninteractive sudo -E apt-get -qqy -o Dpkg::Options::="--force-confdef" -o Dpkg::Options::="--force-confold" upgrade
145-
apt-get -yy install apt-transport-https ca-certificates curl software-properties-common pwgen gnupg
145+
apt-get -yy install apt-transport-https ca-certificates curl pwgen gnupg
146146

147147
# Add Docker GPG signing key
148148
if [ ! -f "/etc/apt/keyrings/docker.gpg" ]; then

0 commit comments

Comments
 (0)