Add workaround for libguestfs issue on Proxmox VE 9.0 (#8722)

This commit is contained in:
CanbiZ
2025-10-29 09:53:00 -07:00
committed by GitHub
parent 08ec932787
commit a1f8cb1bae

View File

@@ -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