mirror of
https://github.com/containers/podman.git
synced 2025-08-06 19:44:14 +08:00

Adding a patch to the bundle so that the update from previous version (v5.3.1) is a minor update, not a major one. A minor update prevents the full uninstallation of v5.3.1 and an unrequested reboot of the machine. Signed-off-by: Mario Loriedo <mario.loriedo@gmail.com>
22 lines
532 B
XML
22 lines
532 B
XML
<Wix xmlns="http://wixtoolset.org/schemas/v4/wxs">
|
|
<Patch
|
|
AllowRemoval="yes"
|
|
Classification="Update"
|
|
DisplayName="Podman Patch v$(Version)"
|
|
Description="Podman Patch v$(Version)"
|
|
Manufacturer="Red Hat Inc.">
|
|
|
|
<Media Id="1000" Cabinet="PodmanPatch.cab">
|
|
<PatchBaseline
|
|
Id="podmanPatch"
|
|
BaselineFile="podman.msi"
|
|
UpdateFile="prev-podman.msi"/>
|
|
</Media>
|
|
|
|
<PatchFamily
|
|
Id="PodmanPatches"
|
|
Version="$(Version)"
|
|
Supersede="yes" />
|
|
</Patch>
|
|
</Wix>
|