From b7eb9a5066941e89a276f368a71502c4fb375255 Mon Sep 17 00:00:00 2001 From: reachableceo Date: Thu, 3 Sep 2026 11:43:48 -0500 Subject: [PATCH] fix(bench): trixie libaio1 fallback in bench LXC installer [#709] Redmine detail: https://projects.knownelement.com/issues/709 --- proxmox/perf/bench/lxc-bench-setup.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/proxmox/perf/bench/lxc-bench-setup.sh b/proxmox/perf/bench/lxc-bench-setup.sh index 38683eb..043b0d6 100644 --- a/proxmox/perf/bench/lxc-bench-setup.sh +++ b/proxmox/perf/bench/lxc-bench-setup.sh @@ -52,7 +52,8 @@ pct start "$CTID" sleep 5 # toolset in (same installer the guests use; piped in, nothing fetched from outside) -pct exec "$CTID" -- bash -c "export DEBIAN_FRONTEND=noninteractive; apt-get update -qq >/dev/null; apt-get install -y -qq fio iperf3 jq libaio1 >/dev/null" +# libaio1 is gone on trixie (t64 transition); fio pulls the right one itself +pct exec "$CTID" -- bash -c "export DEBIAN_FRONTEND=noninteractive; apt-get update -qq >/dev/null; apt-get install -y -qq fio iperf3 jq libaio1 >/dev/null || apt-get install -y -qq fio iperf3 jq >/dev/null" BDIR="/mnt/bench" [ -z "$STORE" ] && BDIR="/var/tmp"