From 9d7fb24069387ead0b662b2e0af760bd7acaf7e3 Mon Sep 17 00:00:00 2001 From: AdSecIT <70515016+AdSecIT@users.noreply.github.com> Date: Wed, 13 Aug 2025 14:32:39 +0930 Subject: [PATCH] Update pre-install.sh (#448) * Update pre-install.sh Sets apt-get to be non interactive on the pre-install. * Update pre-install.sh Sets apt-get to be non interactive on the pre-install. --- debian/pre-install.sh | 3 +++ ubuntu/pre-install.sh | 3 +++ 2 files changed, 6 insertions(+) diff --git a/debian/pre-install.sh b/debian/pre-install.sh index d87fdb5..d0309b2 100755 --- a/debian/pre-install.sh +++ b/debian/pre-install.sh @@ -1,5 +1,8 @@ #!/bin/sh +# Set non-interactive mode for apt-get +export DEBIAN_FRONTEND=noninteractive + #upgrade the packages apt-get update && apt-get upgrade -y diff --git a/ubuntu/pre-install.sh b/ubuntu/pre-install.sh index 8e55453..b013795 100755 --- a/ubuntu/pre-install.sh +++ b/ubuntu/pre-install.sh @@ -1,5 +1,8 @@ #!/bin/sh +# Set non-interactive mode for apt-get +export DEBIAN_FRONTEND=noninteractive + #upgrade the packages apt-get update && apt-get upgrade -y