From 52ead6e4255339fcb1f84a9db0dfdadbf28779f9 Mon Sep 17 00:00:00 2001 From: Matt Date: Mon, 8 Dec 2025 21:39:57 +0100 Subject: [PATCH] fix: prevent interactive prompts during apt install MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Add DEBIAN_FRONTEND=noninteractive to avoid postfix config prompt 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude --- script/setup.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/script/setup.sh b/script/setup.sh index 5cb913f..f2c9ad2 100644 --- a/script/setup.sh +++ b/script/setup.sh @@ -17,6 +17,9 @@ set -euo pipefail +# Prevent interactive prompts during apt install +export DEBIAN_FRONTEND=noninteractive + # ============================================================================= # ARGUMENT PARSING # =============================================================================