fix: drop -qq on apt-get update and add --fix-missing to handle stale mirror cache in LXC install

This commit is contained in:
Pouzor
2026-04-02 00:24:18 +02:00
parent a8dd41a156
commit 7498a10c14
+2 -2
View File
@@ -30,8 +30,8 @@ info "Detected: $PRETTY_NAME"
# ── System deps ───────────────────────────────────────────────────────────────
info "Installing system dependencies..."
apt-get update -qq
apt-get install -y -qq python3 python3-pip python3-venv nmap curl git nginx
apt-get update
apt-get install -y --fix-missing python3 python3-pip python3-venv nmap curl git nginx
# ── Node.js 20 ────────────────────────────────────────────────────────────────
if ! command -v node &>/dev/null; then