From 7498a10c1466d8d87168e7032852596eab1f289c Mon Sep 17 00:00:00 2001 From: Pouzor Date: Thu, 2 Apr 2026 00:24:18 +0200 Subject: [PATCH] fix: drop -qq on apt-get update and add --fix-missing to handle stale mirror cache in LXC install --- scripts/lxc-install.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/lxc-install.sh b/scripts/lxc-install.sh index 1eed19a..f8827b4 100755 --- a/scripts/lxc-install.sh +++ b/scripts/lxc-install.sh @@ -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