Added restart service on failure #5277
This commit is contained in:
parent
17c35f53f4
commit
fa2a6a2169
|
@ -84,11 +84,18 @@
|
||||||
<Component Id="Core" Guid="EC9AD3B0-277C-4157-B5C8-5FD5B6A5F4AD">
|
<Component Id="Core" Guid="EC9AD3B0-277C-4157-B5C8-5FD5B6A5F4AD">
|
||||||
|
|
||||||
<File Source="$(var.BinPath)/synergyd.exe" KeyPath="yes" />
|
<File Source="$(var.BinPath)/synergyd.exe" KeyPath="yes" />
|
||||||
|
|
||||||
<ServiceInstall
|
<ServiceInstall
|
||||||
Id="ServiceInstall" Name="Synergy" DisplayName="$(var.Name)"
|
Id="ServiceInstall" Name="Synergy" DisplayName="$(var.Name)"
|
||||||
Description="Controls the $(var.Name) foreground processes."
|
Description="Controls the $(var.Name) foreground processes."
|
||||||
Type="ownProcess" Start="auto" ErrorControl="normal" />
|
Type="ownProcess" Start="auto" ErrorControl="normal">
|
||||||
|
<util:ServiceConfig
|
||||||
|
FirstFailureActionType='restart'
|
||||||
|
SecondFailureActionType='restart'
|
||||||
|
ThirdFailureActionType='restart'
|
||||||
|
RestartServiceDelayInSeconds='1'
|
||||||
|
ResetPeriodInDays='1'/>
|
||||||
|
</ServiceInstall>
|
||||||
|
|
||||||
<ServiceControl
|
<ServiceControl
|
||||||
Id="ServiceControl" Name="Synergy"
|
Id="ServiceControl" Name="Synergy"
|
||||||
|
|
Loading…
Reference in New Issue