mirror of
https://github.com/xcp-ng/xenadmin.git
synced 2024-11-25 06:16:37 +01:00
CP-12161: Add the Call Home service to the XenCenter installer
Adding XenServerHealthCheck service to the WiX installer Signed-off-by: Gabor Apati-Nagy <gabor.apati-nagy@citrix.com>
This commit is contained in:
parent
43fb63d522
commit
0bd967f69c
@ -194,6 +194,39 @@
|
|||||||
</Component>
|
</Component>
|
||||||
</Directory>
|
</Directory>
|
||||||
</Directory>
|
</Directory>
|
||||||
|
<Directory Id="HEALTHCHECKSERVICEDIR" Name="XenServerHealthCheckService">
|
||||||
|
<Component Id="XenServerHealthCheck" Guid="{9D686BFC-B4FD-435F-AC74-0ACE29425095}">
|
||||||
|
<File Id="HealthCheck_XenServerHealthCheck.exe" Name="XenServerHealthCheck.exe" KeyPath="yes" Source="..\XenServerHealthCheck\bin\Release\XenServerHealthCheck.exe" />
|
||||||
|
<File Id="HealthCheck_CommandLib.dll" Name="CommandLib.dll" Source="..\XenServerHealthCheck\bin\Release\CommandLib.dll" />
|
||||||
|
<File Id="HealthCheck_CookComputing.XmlRpcV2.dll" Name="CookComputing.XmlRpcV2.dll" Source="..\XenServerHealthCheck\bin\Release\CookComputing.XmlRpcV2.dll" />
|
||||||
|
<File Id="HealthCheck_ICSharpCode.SharpZipLib.dll" Name="ICSharpCode.SharpZipLib.dll" Source="..\XenServerHealthCheck\bin\Release\ICSharpCode.SharpZipLib.dll" />
|
||||||
|
<File Id="HealthCheck_Ionic.Zip.dll" Name="Ionic.Zip.dll" Source="..\XenServerHealthCheck\bin\Release\Ionic.Zip.dll" />
|
||||||
|
<File Id="HealthCheck_log4net.dll" Name="log4net.dll" Source="..\XenServerHealthCheck\bin\Release\log4net.dll" />
|
||||||
|
<File Id="HealthCheck_XenCenterLib.dll" Name="XenCenterLib.dll" Source="..\XenServerHealthCheck\bin\Release\XenCenterLib.dll" />
|
||||||
|
<File Id="HealthCheck_XenModel.dll" Name="XenModel.dll" Source="..\XenServerHealthCheck\bin\Release\XenModel.dll" />
|
||||||
|
<File Id="HealthCheck_XenServerHealthCheck.exe.config" Name="XenServerHealthCheck.exe.config" Source="..\XenServerHealthCheck\bin\Release\XenServerHealthCheck.exe.config" />
|
||||||
|
<ServiceInstall
|
||||||
|
Id="ServiceInstaller"
|
||||||
|
Type="ownProcess"
|
||||||
|
Vital="no"
|
||||||
|
Name="XenServerHealthCheck"
|
||||||
|
DisplayName="Citrix XenServer Health Check Service"
|
||||||
|
Description="Citrix XenServer Health Check Service"
|
||||||
|
Start="auto"
|
||||||
|
Account="LocalSystem"
|
||||||
|
ErrorControl="normal"
|
||||||
|
Interactive="no"
|
||||||
|
/>
|
||||||
|
<ServiceControl
|
||||||
|
Id="StartService"
|
||||||
|
Start="install"
|
||||||
|
Stop="both"
|
||||||
|
Remove="uninstall"
|
||||||
|
Name="XenServerHealthCheck"
|
||||||
|
Wait="yes"
|
||||||
|
/>
|
||||||
|
</Component>
|
||||||
|
</Directory>
|
||||||
</Directory>
|
</Directory>
|
||||||
</Directory>
|
</Directory>
|
||||||
<Directory Id="ProgramMenuFolder">
|
<Directory Id="ProgramMenuFolder">
|
||||||
@ -220,6 +253,7 @@
|
|||||||
<ComponentRef Id="ReportViewer" />
|
<ComponentRef Id="ReportViewer" />
|
||||||
<ComponentRef Id="TestResources" />
|
<ComponentRef Id="TestResources" />
|
||||||
<ComponentRef Id="SchemasFilesComponent" />
|
<ComponentRef Id="SchemasFilesComponent" />
|
||||||
|
<ComponentRef Id="XenServerHealthCheck" />
|
||||||
<ComponentRef Id="ExternalToolsComponent" />
|
<ComponentRef Id="ExternalToolsComponent" />
|
||||||
<ComponentRef Id="RegistryEntries" />
|
<ComponentRef Id="RegistryEntries" />
|
||||||
<ComponentRef Id="ApplicationShortcut" />
|
<ComponentRef Id="ApplicationShortcut" />
|
||||||
|
Loading…
Reference in New Issue
Block a user