refactor(install.sh): don't auto upgrade/update

This commit is contained in:
Nicolas Meienberger 2023-08-26 00:29:43 +02:00
parent 62490a596b
commit ee41a9701a

View file

@ -115,11 +115,6 @@ function install_docker() {
fi
}
echo "Updating system"
sudo DEBIAN_FRONTEND=noninteractive apt-get update -y
echo "Upgrading system"
sudo DEBIAN_FRONTEND=noninteractive apt-get upgrade -y
if ! command -v docker >/dev/null; then
echo "Installing docker"
install_docker "${OS}"