From a1f8cb1baee8d7b337dcec5159cf48d58d105c35 Mon Sep 17 00:00:00 2001 From: CanbiZ <47820557+MickLesk@users.noreply.github.com> Date: Wed, 29 Oct 2025 09:53:00 -0700 Subject: [PATCH] Add workaround for libguestfs issue on Proxmox VE 9.0 (#8722) --- vm/docker-vm.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/vm/docker-vm.sh b/vm/docker-vm.sh index 2cb92d934..f291c50d8 100644 --- a/vm/docker-vm.sh +++ b/vm/docker-vm.sh @@ -497,6 +497,8 @@ if ! command -v virt-customize &>/dev/null; then msg_info "Installing Pre-Requisite libguestfs-tools onto Host" apt-get -qq update >/dev/null apt-get -qq install libguestfs-tools lsb-release -y >/dev/null + # Workaround for Proxmox VE 9.0 libguestfs issue + apt-get -qq install dhcpcd-base -y >/dev/null 2>&1 || true msg_ok "Installed libguestfs-tools successfully" fi