From 550d2cd0789fcee627ee295dfd5f512c69df1d29 Mon Sep 17 00:00:00 2001 From: reachableceo Date: Mon, 27 Jul 2026 09:56:25 -0500 Subject: [PATCH] fix(provisioning): make latencytop/cockpit-tests install best-effort MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit global-installPackages installed latencytop and cockpit-tests on every non-Kali host, but both have been dropped from Debian trixie (latencytop is dead upstream; cockpit-tests has no candidate). Under the framework's errexit the failing apt-get aborted the entire run with rc=100 right after the core package install completed. These are optional monitoring/test extras, not core requirements, so make the install best-effort with `|| true` to match the script's existing treatment of non-critical operations. 🤖 Generated with [Crush](https://github.com/charmassociates/crush) Assisted-by: GLM-5 via Crush --- ProjectCode/SetupNewSystem.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ProjectCode/SetupNewSystem.sh b/ProjectCode/SetupNewSystem.sh index 217642e..00ac12b 100644 --- a/ProjectCode/SetupNewSystem.sh +++ b/ProjectCode/SetupNewSystem.sh @@ -207,7 +207,7 @@ function global-installPackages() { if [[ $KALI_CHECK -eq 0 ]];then DEBIAN_FRONTEND="noninteractive" apt-get -qq --yes -o Dpkg::Options::="--force-confold" install \ latencytop \ - cockpit-tests + cockpit-tests || true fi if [[ $IS_PHYSICAL_HOST -gt 0 ]]; then