From c72ffae4a2c7bc234d08b9168db482727419de8d Mon Sep 17 00:00:00 2001 From: Dan Schaper Date: Tue, 20 Dec 2016 17:02:51 -0800 Subject: [PATCH] Don't install extra packages (openresolv was installed over resolvconf). No longer need --fix-missing. Signed-off-by: Dan Schaper --- automated install/basic-install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/automated install/basic-install.sh b/automated install/basic-install.sh index 0c66094f..55c4716c 100755 --- a/automated install/basic-install.sh +++ b/automated install/basic-install.sh @@ -81,7 +81,7 @@ if [[ $(command -v apt-get) ]]; then PKG_CACHE="/var/lib/apt/lists/" UPDATE_PKG_CACHE="${PKG_MANAGER} update" PKG_UPDATE="${PKG_MANAGER} upgrade" - PKG_INSTALL="${PKG_MANAGER} --yes --fix-missing install" + PKG_INSTALL="${PKG_MANAGER} --yes --no-install-recommends install" # grep -c will return 1 retVal on 0 matches, block this throwing the set -e with an OR TRUE PKG_COUNT="${PKG_MANAGER} -s -o Debug::NoLocking=true upgrade | grep -c ^Inst || true" # #########################################