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.
This commit is contained in:
CanbiZ
2025-10-29 15:42:48 +01:00
parent ee02bc1977
commit dc5c0fdfb5

View File

@@ -497,6 +497,8 @@ if ! command -v virt-customize &>/dev/null; then
msg_info "Installing Pre-Requisite libguestfs-tools onto Host" msg_info "Installing Pre-Requisite libguestfs-tools onto Host"
apt-get -qq update >/dev/null apt-get -qq update >/dev/null
apt-get -qq install libguestfs-tools lsb-release -y >/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" msg_ok "Installed libguestfs-tools successfully"
fi fi