Lots of fixes. Becoming more stable now. #865

This commit is contained in:
tidusjar 2017-06-21 17:02:29 +01:00
parent 1c6ddc74cb
commit dcf97a1008
31 changed files with 1021 additions and 381 deletions

View file

@ -0,0 +1,44 @@
using System;
using System.Diagnostics;
using System.Linq;
namespace Ombi.Updater
{
class Program
{
static void Main(string[] args)
{
Console.WriteLine("=======================================");
Console.WriteLine(" Starting the Ombi Updater");
Console.WriteLine("=======================================");
var options = CheckArgs(args);
}
private static StartupOptions CheckArgs(string[] args)
{
if(args.Length <= 0)
{
Console.WriteLine("No Args Provided... Exiting");
Environment.Exit(1);
}
var p = new ProcessProvider();
var ombiProc = p.FindProcessByName("Ombi").FirstOrDefault().Id;
return new StartupOptions
{
ApplicationPath = args[0],
OmbiProcessId = ombiProc
};
}
}
public class StartupOptions
{
public string ApplicationPath { get; set; }
public int OmbiProcessId { get; set; }
}
}