From ae4775159f81d898e4f174738807f0c459982dec Mon Sep 17 00:00:00 2001 From: David Schroeder Date: Sun, 29 May 2022 10:19:56 -0500 Subject: [PATCH] Update install-glances.sh --- install-glances.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/install-glances.sh b/install-glances.sh index 44642fc..ab13e69 100755 --- a/install-glances.sh +++ b/install-glances.sh @@ -86,13 +86,13 @@ if [[ $distrib_name == "ubuntu" || $distrib_name == "LinuxMint" || $distrib_name export DEBIAN_FRONTEND=noninteractive # Make sure the package repository is up to date - do_with_root apt-get -y --force-yes update + do_with_root apt-get -y update # Install prerequirements - do_with_root apt-get install -y --force-yes python3-pip python3-dev gcc lm-sensors python3-setuptools pkg-config + do_with_root apt-get install -y python3-pip python3-dev gcc lm-sensors python3-setuptools pkg-config if [[ " ${DEPS[@]} " =~ "wifi" ]]; then - do_with_root apt-get install -y --force-yes wireless-tools + do_with_root apt-get install -y wireless-tools fi