mirror of
https://github.com/Ombi-app/Ombi.git
synced 2025-07-30 19:40:05 -07:00
Lots of fixes. Becoming more stable now. #865
This commit is contained in:
parent
1c6ddc74cb
commit
dcf97a1008
31 changed files with 1021 additions and 381 deletions
20
src/Ombi.Updater/Installer.cs
Normal file
20
src/Ombi.Updater/Installer.cs
Normal file
|
@ -0,0 +1,20 @@
|
|||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
|
||||
namespace Ombi.Updater
|
||||
{
|
||||
public class Installer
|
||||
{
|
||||
public void Start(StartupOptions options)
|
||||
{
|
||||
// Kill Ombi Process
|
||||
var p = new ProcessProvider();
|
||||
|
||||
p.Kill(options.OmbiProcessId);
|
||||
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue