|
|
@ -32,7 +32,6 @@ namespace NzbDrone.Common
|
|
|
|
return service != null && service.Status == ServiceControllerStatus.Running;
|
|
|
|
return service != null && service.Status == ServiceControllerStatus.Running;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public virtual void Install(string serviceName)
|
|
|
|
public virtual void Install(string serviceName)
|
|
|
|
{
|
|
|
|
{
|
|
|
|
Logger.Info("Installing service '{0}'", serviceName);
|
|
|
|
Logger.Info("Installing service '{0}'", serviceName);
|
|
|
@ -78,7 +77,6 @@ namespace NzbDrone.Common
|
|
|
|
Logger.Info("{0} successfully uninstalled", serviceName);
|
|
|
|
Logger.Info("{0} successfully uninstalled", serviceName);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public virtual void Run(ServiceBase service)
|
|
|
|
public virtual void Run(ServiceBase service)
|
|
|
|
{
|
|
|
|
{
|
|
|
|
ServiceBase.Run(service);
|
|
|
|
ServiceBase.Run(service);
|
|
|
@ -131,6 +129,7 @@ namespace NzbDrone.Common
|
|
|
|
if (service == null)
|
|
|
|
if (service == null)
|
|
|
|
{
|
|
|
|
{
|
|
|
|
Logger.Warn("Unable to start '{0}' no service with that name exists.", serviceName);
|
|
|
|
Logger.Warn("Unable to start '{0}' no service with that name exists.", serviceName);
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
if (service.Status != ServiceControllerStatus.Paused && service.Status != ServiceControllerStatus.Stopped)
|
|
|
|
if (service.Status != ServiceControllerStatus.Paused && service.Status != ServiceControllerStatus.Stopped)
|
|
|
|