Fix Service install, when Sonarr is also present. Fixes #55.

This commit is contained in:
Leonardo Galli 2017-01-08 18:16:07 +01:00
parent 49537a2efe
commit af74854b8e
1 changed files with 2 additions and 2 deletions

View File

@ -25,7 +25,7 @@ namespace NzbDrone.Common
public class ServiceProvider : IServiceProvider public class ServiceProvider : IServiceProvider
{ {
public const string NZBDRONE_SERVICE_NAME = "NzbDrone"; public const string NZBDRONE_SERVICE_NAME = "Radarr";
private readonly IProcessProvider _processProvider; private readonly IProcessProvider _processProvider;
private readonly Logger _logger; private readonly Logger _logger;
@ -78,7 +78,7 @@ namespace NzbDrone.Common
serviceInstaller.Context = context; serviceInstaller.Context = context;
serviceInstaller.DisplayName = serviceName; serviceInstaller.DisplayName = serviceName;
serviceInstaller.ServiceName = serviceName; serviceInstaller.ServiceName = serviceName;
serviceInstaller.Description = "NzbDrone Application Server"; serviceInstaller.Description = "Radarr Application Server";
serviceInstaller.StartType = ServiceStartMode.Automatic; serviceInstaller.StartType = ServiceStartMode.Automatic;
serviceInstaller.ServicesDependedOn = new[] { "EventLog", "Tcpip", "http" }; serviceInstaller.ServicesDependedOn = new[] { "EventLog", "Tcpip", "http" };