fix: prevent interactive prompts during apt install

Add DEBIAN_FRONTEND=noninteractive to avoid postfix config prompt

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
Matt 2025-12-08 21:39:57 +01:00
parent c09546f916
commit 52ead6e425
1 changed files with 3 additions and 0 deletions

View File

@ -17,6 +17,9 @@
set -euo pipefail set -euo pipefail
# Prevent interactive prompts during apt install
export DEBIAN_FRONTEND=noninteractive
# ============================================================================= # =============================================================================
# ARGUMENT PARSING # ARGUMENT PARSING
# ============================================================================= # =============================================================================