From bce139f9d18a15100acac06029bd306c0180aa2f Mon Sep 17 00:00:00 2001 From: MacRimi Date: Tue, 18 Aug 2026 23:47:03 +0200 Subject: [PATCH] Update apply_updates.sh --- scripts/lxc/apply_updates.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/lxc/apply_updates.sh b/scripts/lxc/apply_updates.sh index 82540f9b..65264e19 100755 --- a/scripts/lxc/apply_updates.sh +++ b/scripts/lxc/apply_updates.sh @@ -104,8 +104,8 @@ if [[ "$TARGET" == "os" || "$TARGET" == "both" ]]; then # conflicts (dpkg keeps the local version by default with # --force-confold). if ! pct exec "$VMID" -- env DEBIAN_FRONTEND=noninteractive \ - apt-get -y -o Dpkg::Options::="--force-confold" upgrade; then - echo "ERROR: apt-get upgrade failed inside CT $VMID." >&2 + apt-get -y -o Dpkg::Options::="--force-confold" dist-upgrade; then + echo "ERROR: apt-get dist-upgrade failed inside CT $VMID." >&2 OS_FAILED=1 fi ;;