Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Config.psm1
Original file line number Diff line number Diff line change
Expand Up @@ -116,8 +116,8 @@ function Get-AvailableConfigOptions {
"Description" = "Installs QEMU guest agent services from the Fedora VirtIO website.
Defaults to 'False' (no installation will be performed).
If set to 'True', the following MSI installer will be downloaded and installed:
* for x86: https://fedorapeople.org/groups/virt/virtio-win/direct-downloads/archive-qemu-ga/qemu-ga-win-100.0.0.0-3.el7ev/qemu-ga-x86.msi
* for x64: https://fedorapeople.org/groups/virt/virtio-win/direct-downloads/archive-qemu-ga/qemu-ga-win-100.0.0.0-3.el7ev/qemu-ga-x64.msi
* for x86: https://fedorapeople.org/groups/virt/virtio-win/direct-downloads/latest-qemu-ga/qemu-ga-i386.msi
* for x64: https://fedorapeople.org/groups/virt/virtio-win/direct-downloads/latest-qemu-ga/qemu-ga-x86-64.msi
The value can be changed to a custom URL, to allow other QEMU guest agent versions to be installed.
Note: QEMU guest agent requires VirtIO drivers to be present on the image.
"},
Expand Down
4 changes: 2 additions & 2 deletions Examples/windows-image-config-example.ini
Original file line number Diff line number Diff line change
Expand Up @@ -137,8 +137,8 @@ drivers_path=""
# Installs QEMU guest agent services from the Fedora VirtIO website.
# Defaults to 'False' (no installation will be performed).
# If set to 'True', the following MSI installer will be downloaded and installed:
# * for x86: https://fedorapeople.org/groups/virt/virtio-win/direct-downloads/archive-qemu-ga/qemu-ga-win-100.0.0.0-3.el7ev/qemu-ga-x86.msi
# * for x64: https://fedorapeople.org/groups/virt/virtio-win/direct-downloads/archive-qemu-ga/qemu-ga-win-100.0.0.0-3.el7ev/qemu-ga-x64.msi
# * for x86: https://fedorapeople.org/groups/virt/virtio-win/direct-downloads/latest-qemu-ga/qemu-ga-i386.msi
# * for x64: https://fedorapeople.org/groups/virt/virtio-win/direct-downloads/latest-qemu-ga/qemu-ga-x86-64.msi
# The value can be changed to a custom URL, to allow other QEMU guest agent versions to be installed.
# Note: QEMU guest agent requires VirtIO drivers to be present on the image.
install_qemu_ga=False
Expand Down
6 changes: 3 additions & 3 deletions WinImageBuilder.psm1
Original file line number Diff line number Diff line change
Expand Up @@ -575,12 +575,12 @@ function Download-QemuGuestAgent {

$QemuGuestAgentUrl = $QemuGuestAgentConfig
if ($QemuGuestAgentConfig -eq 'True') {
$arch = "x86"
$arch = "i386"
if ($OsArch -eq "AMD64") {
$arch = "x64"
$arch = "x86-64"
}
$QemuGuestAgentUrl = "https://fedorapeople.org/groups/virt/virtio-win/direct-downloads" + `
"/archive-qemu-ga/qemu-ga-win-100.0.0.0-3.el7ev/qemu-ga-{0}.msi" -f $arch
"/latest-qemu-ga/qemu-ga-{0}.msi" -f $arch
}

Write-Log "Downloading QEMU guest agent installer from ${QemuGuestAgentUrl} ..."
Expand Down
Loading