From ac36b0e6f62543fc2e046e490a2a224a0b4f045a Mon Sep 17 00:00:00 2001
From: Christian Heller <c.heller@plomlompom.de>
Date: Sun, 12 Jan 2020 05:59:40 +0100
Subject: [PATCH] Fix noninteractivity failure.

---
 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 3852e0d..176f3ea 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 -o Dpkg::Options::=--force-confold install "${line}"
+            DEBIAN_FRONTEND=noninteractive apt-get -y -o Dpkg::Options::=--force-confold install "${line}"
         fi
     done
 done
-- 
2.30.2