From: Christian Heller Date: Mon, 11 Nov 2019 21:02:49 +0000 (+0100) Subject: Don't interrupt installation with questions that could be answered with default. X-Git-Url: https://plomlompom.com/repos/?p=config;a=commitdiff_plain;h=f081a3edd323e4476b1ab8c989369e6c1741b5ce Don't interrupt installation with questions that could be answered with default. --- 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