1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-09-17 15:02:34 +02:00

Service now depends on Tcpip

This commit is contained in:
Mark McDowall 2013-10-10 21:48:43 -07:00
parent 39834c1691
commit 9b5e56704e

View File

@ -71,6 +71,7 @@ public virtual void Install(string serviceName)
serviceInstaller.ServiceName = serviceName;
serviceInstaller.Description = "NzbDrone Application Server";
serviceInstaller.StartType = ServiceStartMode.Automatic;
serviceInstaller.ServicesDependedOn = new[] { "Tcpip" };
serviceInstaller.Parent = installer;