From f2bbf7c826416fa326706e18ecfcb15cc85e6067 Mon Sep 17 00:00:00 2001 From: "Ryan T. Murphy" Date: Thu, 22 Jan 2026 19:00:08 -0500 Subject: [PATCH] Fix interrupted dpkg state before apt-get Run dpkg --configure -a before apt operations to recover from any previously interrupted package installations. --- install.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/install.sh b/install.sh index ff8a777..4054276 100755 --- a/install.sh +++ b/install.sh @@ -31,6 +31,7 @@ echo "" # Install packages (noninteractive to prevent hanging on prompts) echo "[1/8] Installing packages..." export DEBIAN_FRONTEND=noninteractive +dpkg --configure -a 2>/dev/null || true # Fix any interrupted dpkg state apt-get update -qq apt-get install -y -qq earlyoom monit