Skip to content

Commit

Permalink
AU: 1 updated - qemu-guest-agent
Browse files Browse the repository at this point in the history
  • Loading branch information
strausmann committed Feb 28, 2024
1 parent 65b3016 commit 0f3932b
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 16 deletions.
2 changes: 1 addition & 1 deletion automatic/qemu-guest-agent/README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# <img src="https://cdn.jsdelivr.net/gh/strausmann/ChocolateyPackages/icons/qemu.png" width="48" height="48"/> [qemu-guest-agent](https://community.chocolatey.org/packages/qemu-guest-agent)
# <img src="https://rawcdn.githack.com/strausmann/ChocolateyPackages/327464104957ec03a1c55ab68e1a72281b04e7b0/icons/qemu.png" width="48" height="48"/> [qemu-guest-agent](https://community.chocolatey.org/packages/qemu-guest-agent)

Virtio-win-guest-tools

Expand Down
23 changes: 12 additions & 11 deletions automatic/qemu-guest-agent/qemu-guest-agent.nuspec
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<?xml version="1.0" encoding="utf-8"?>
<?xml version="1.0" encoding="utf-8"?>
<package xmlns="http://schemas.microsoft.com/packaging/2015/06/nuspec.xsd">
<metadata>
<id>qemu-guest-agent</id>
<version>0.1.240</version>
<version>0.1.248</version>
<owners>Bjoern Strausmann</owners>
<title>Virtio Win Guest Tools (Install)</title>
<authors>Red Hat Inc.</authors>
Expand All @@ -13,7 +13,7 @@
<tags>virtio win qemu guest tools admin</tags>
<licenseUrl>https://github.com/virtio-win/kvm-guest-drivers-windows/blob/master/LICENSE</licenseUrl>
<packageSourceUrl>https://github.com/strausmann/ChocolateyPackages/tree/master/automatic/qemu-guest-agent</packageSourceUrl>
<iconUrl>https://cdn.jsdelivr.net/gh/strausmann/ChocolateyPackages/icons/qemu.png</iconUrl>
<iconUrl>https://rawcdn.githack.com/strausmann/ChocolateyPackages/327464104957ec03a1c55ab68e1a72281b04e7b0/icons/qemu.png</iconUrl>
<summary>KVM Qemu Guest Agent / Driver - Binary drivers are provided by some Linux distributions including WHQL Certified drivers.</summary>
<description>Virtio-win-guest-tools

Expand All @@ -24,17 +24,18 @@ let them know the package is no longer updating correctly.
### Package Specific
#### Installer Properties
The following install arguments can be passed:
* `ALLUSERS`
* `1`
* `REGISTRY_PRODUCT_NAME`
* `REGISTRYSEARCH_IS_TERMSERVICE_EXIST`
* `REGISTRYSEARCH_IS_SPICEUSBREDIRECTOR_EXIST`
* `REGISTRYSEARCH_OLD_WGT_UNINSTALL_PATH`
* `ALLUSERS`
* `1`
* `REGISTRY_PRODUCT_NAME`
* `REGISTRYSEARCH_IS_TERMSERVICE_EXIST`
* `REGISTRYSEARCH_IS_SPICEUSBREDIRECTOR_EXIST`
* `REGISTRYSEARCH_OLD_WGT_UNINSTALL_PATH`

To append install arguments to the current silent arguments passed to the installer, use `--install-arguments="''"` or `--install-arguments-sensitive="''"`. To completely override the silent arguments with your own, also pass `--override-arguments`.
Example: `choco install packageId [other options] --install-arguments="'PROPERTY=value PROPERTY2=value2'"`
Example: `choco install packageId [other options] --install-arguments="'PROPERTY=value PROPERTY2=value2'"`
To have choco remember parameters on upgrade, be sure to set `choco feature enable -n=useRememberedArgumentsForUpgrades`.
</description>

</description>
<releaseNotes>
https://fedorapeople.org/groups/virt/virtio-win/CHANGELOG
</releaseNotes>
Expand Down
8 changes: 4 additions & 4 deletions automatic/qemu-guest-agent/tools/chocolateyinstall.ps1
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
$ErrorActionPreference = 'Stop';
$toolsDir = '$(Split-Path -parent $MyInvocation.MyCommand.Definition)'

$url = 'https://fedorapeople.org/groups/virt/virtio-win/direct-downloads/archive-virtio/virtio-win-0.1.240-1/virtio-win-gt-x86.msi'
$checksum = '7aece774405b26b9181acc2df76f8510237727bd519ffb520cebdbb83c1079a5'
$url = 'https://fedorapeople.org/groups/virt/virtio-win/direct-downloads/archive-virtio/virtio-win-0.1.248-1/virtio-win-gt-x86.msi'
$checksum = 'd654406d06937bdd788b4fe7380956159f8100db9c2181d8b682c60ecbd40e89'
$checksumType = 'sha256'
$url64 = 'https://fedorapeople.org/groups/virt/virtio-win/direct-downloads/archive-virtio/virtio-win-0.1.240-1/virtio-win-gt-x64.msi'
$checksum64 = '318702f2899a02e4a662e0e37874d58f88cd30c3bd81fcf4318e90729606ba9e'
$url64 = 'https://fedorapeople.org/groups/virt/virtio-win/direct-downloads/archive-virtio/virtio-win-0.1.248-1/virtio-win-gt-x64.msi'
$checksum64 = 'b45e17b272205d2bc28ae138256a730f96d13caec9e50e4fcd8e7da7603ac3e4'
$checksumType64 = 'sha256'

$packageArgs = @{
Expand Down

0 comments on commit 0f3932b

Please sign in to comment.