From 3a9dd52098035d047b9677d0e45b6ddca9e0b767 Mon Sep 17 00:00:00 2001 From: levasseur Date: Mon, 13 Sep 2021 17:18:45 +0200 Subject: [PATCH] added variable to disable interactive dialogs from apt* tools --- conf/includes/debian.conf.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/conf/includes/debian.conf.sh b/conf/includes/debian.conf.sh index 344e4fa..e142590 100644 --- a/conf/includes/debian.conf.sh +++ b/conf/includes/debian.conf.sh @@ -8,6 +8,9 @@ export COM_UPGRADE="full-upgrade -y" export COM_REMOVE="remove --purge -y" export COM_AUTOREM="autoremove --purge -y" +# Special variable for apt tools to disable any interactive behaviour +export DEBIAN_FRONTEND=noninteractive + # Conf chemin export RC_SCRIPTS_PATH="/etc/init.d"