From dc5c0fdfb5c49039bd23d8d2e6d755a697f41531 Mon Sep 17 00:00:00 2001 From: CanbiZ <47820557+MickLesk@users.noreply.github.com> Date: Wed, 29 Oct 2025 15:42:48 +0100 Subject: [PATCH] Add workaround for libguestfs issue on Proxmox VE 9.0 Installs dhcpcd-base as a workaround for a known libguestfs issue on Proxmox VE 9.0 during prerequisite installation. --- 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