From f081a3edd323e4476b1ab8c989369e6c1741b5ce Mon Sep 17 00:00:00 2001 From: Christian Heller Date: Mon, 11 Nov 2019 22:02:49 +0100 Subject: [PATCH] Don't interrupt installation with questions that could be answered with default. --- buster/setup_scripts/install_for_target.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/buster/setup_scripts/install_for_target.sh b/buster/setup_scripts/install_for_target.sh index 08723d5..86537f9 100755 --- a/buster/setup_scripts/install_for_target.sh +++ b/buster/setup_scripts/install_for_target.sh @@ -13,7 +13,7 @@ for target in "$@"; do cat "${path}" | while read line; do echo "$line" if [ ! $(echo "${line}" | cut -c1) = "#" ]; then - apt-get -y install "${line}" + apt-get -y -o Dpkg::Options::=--force-confdef install "${line}" fi done done -- 2.30.2