diff options
author | Jason T. Greene <jason.greene@redhat.com> | 2022-01-18 14:39:48 -0600 |
---|---|---|
committer | Jason T. Greene <jason.greene@redhat.com> | 2022-01-19 13:03:49 -0600 |
commit | 2d0b5ebb5bdc06cf34488a75318c0ba66e3f2edf (patch) | |
tree | e9a59f462b65e6d46d42a779c88c8b38804de78b /contrib/msi/podman.wxs | |
parent | 094b11cbcb528a7d120c31402a1bcd9c82d84938 (diff) | |
download | podman-2d0b5ebb5bdc06cf34488a75318c0ba66e3f2edf.tar.gz podman-2d0b5ebb5bdc06cf34488a75318c0ba66e3f2edf.tar.bz2 podman-2d0b5ebb5bdc06cf34488a75318c0ba66e3f2edf.zip |
Implement API forwarding for podman machine on Windows
Signed-off-by: Jason T. Greene <jason.greene@redhat.com>
Diffstat (limited to 'contrib/msi/podman.wxs')
-rw-r--r-- | contrib/msi/podman.wxs | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/contrib/msi/podman.wxs b/contrib/msi/podman.wxs index c2826fc19..c4ba623c0 100644 --- a/contrib/msi/podman.wxs +++ b/contrib/msi/podman.wxs @@ -29,6 +29,9 @@ <Component Id="WinPathExecutable" Guid="00F5B731-D4A6-4B69-87B0-EA4EBAB89F95" Win64="Yes"> <File Id="8F507E28-A61D-4E64-A92B-B5A00F023AE8" Name="winpath.exe" Source="bin/windows/winpath.exe" KeyPath="yes"/> </Component> + <Component Id="WinSshProxyExecutable" Guid="0DA730AB-2F97-40E8-A8FC-356E88EAA4D2" Win64="Yes"> + <File Id="4A2AD125-34E7-4BD8-BE28-B2A9A5EDBEB5" Name="win-sshproxy.exe" Source="bin/windows/win-sshproxy.exe" KeyPath="yes"/> + </Component> </Directory> </Directory> </Directory> @@ -41,6 +44,7 @@ <ComponentRef Id="INSTALLDIR_Component"/> <ComponentRef Id="MainExecutable"/> <ComponentRef Id="WinPathExecutable"/> + <ComponentRef Id="WinSshProxyExecutable"/> <ComponentGroupRef Id="ManFiles"/> </Feature> |