mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2025-09-17 17:14:18 +02:00
Adding a dependency on EventLog
This commit is contained in:
@@ -71,7 +71,7 @@ namespace NzbDrone.Common
|
|||||||
serviceInstaller.ServiceName = serviceName;
|
serviceInstaller.ServiceName = serviceName;
|
||||||
serviceInstaller.Description = "NzbDrone Application Server";
|
serviceInstaller.Description = "NzbDrone Application Server";
|
||||||
serviceInstaller.StartType = ServiceStartMode.Automatic;
|
serviceInstaller.StartType = ServiceStartMode.Automatic;
|
||||||
serviceInstaller.ServicesDependedOn = new[] { "Tcpip" };
|
serviceInstaller.ServicesDependedOn = new[] { "EventLog", "Tcpip" };
|
||||||
|
|
||||||
serviceInstaller.Parent = installer;
|
serviceInstaller.Parent = installer;
|
||||||
|
|
||||||
|
@@ -26,7 +26,7 @@ namespace ServiceInstall
|
|||||||
{
|
{
|
||||||
if (!File.Exists(NzbDroneExe))
|
if (!File.Exists(NzbDroneExe))
|
||||||
{
|
{
|
||||||
Console.WriteLine("Unable to find NzbDrone.exe in the current directory.");
|
Console.WriteLine("Unable to find NzbDrone.Console.exe in the current directory.");
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user