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:
parent
c09546f916
commit
52ead6e425
|
|
@ -17,6 +17,9 @@
|
|||
|
||||
set -euo pipefail
|
||||
|
||||
# Prevent interactive prompts during apt install
|
||||
export DEBIAN_FRONTEND=noninteractive
|
||||
|
||||
# =============================================================================
|
||||
# ARGUMENT PARSING
|
||||
# =============================================================================
|
||||
|
|
|
|||
Loading…
Reference in New Issue