mirror of
https://github.com/Radarr/Radarr.git
synced 2024-11-05 02:22:31 +01:00
better process cleanup on automation teardown
This commit is contained in:
parent
b2a042bd30
commit
7e7835f3f7
@ -110,15 +110,12 @@ private void StartNzbDrone()
|
|||||||
|
|
||||||
private void StopNzbDrone()
|
private void StopNzbDrone()
|
||||||
{
|
{
|
||||||
foreach (var process in Process.GetProcessesByName("nzbdrone"))
|
|
||||||
{
|
|
||||||
process.Kill();
|
|
||||||
process.WaitForExit();
|
|
||||||
}
|
|
||||||
|
|
||||||
foreach (var process in Process.GetProcessesByName("iisexpress"))
|
foreach (var process in Process.GetProcesses())
|
||||||
{
|
{
|
||||||
process.Kill();
|
if (string.Equals(process.ProcessName, "NzbDrone", StringComparison.InvariantCultureIgnoreCase)
|
||||||
|
|| string.Equals(process.ProcessName, "IISExpress", StringComparison.InvariantCultureIgnoreCase))
|
||||||
|
process.Kill();
|
||||||
process.WaitForExit();
|
process.WaitForExit();
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -126,9 +123,15 @@ private void StopNzbDrone()
|
|||||||
{
|
{
|
||||||
StartProcess("ServiceUninstall.exe", true);
|
StartProcess("ServiceUninstall.exe", true);
|
||||||
}
|
}
|
||||||
catch (Exception)
|
catch { }
|
||||||
{
|
|
||||||
|
|
||||||
|
foreach (var process in Process.GetProcesses())
|
||||||
|
{
|
||||||
|
if (string.Equals(process.ProcessName, "NzbDrone", StringComparison.InvariantCultureIgnoreCase)
|
||||||
|
|| string.Equals(process.ProcessName, "IISExpress", StringComparison.InvariantCultureIgnoreCase)
|
||||||
|
|| string.Equals(process.ProcessName, "ServiceUninstall", StringComparison.InvariantCultureIgnoreCase))
|
||||||
|
process.Kill();
|
||||||
|
process.WaitForExit();
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user