remove self update capability from service

This commit is contained in:
Luke Pulverenti
2013-10-07 12:22:19 -04:00
parent 65f78ea5ad
commit 4a030a70a9
7 changed files with 96 additions and 26 deletions

View File

@@ -82,6 +82,30 @@ namespace MediaBrowser.Server.Mono
return new ServerApplicationPaths();
}
/// <summary>
/// Determines whether this instance [can self restart].
/// </summary>
/// <returns><c>true</c> if this instance [can self restart]; otherwise, <c>false</c>.</returns>
public static bool CanSelfRestart
{
get
{
return false;
}
}
/// <summary>
/// Gets a value indicating whether this instance can self update.
/// </summary>
/// <value><c>true</c> if this instance can self update; otherwise, <c>false</c>.</value>
public static bool CanSelfUpdate
{
get
{
return false;
}
}
private static void RunApplication(ServerApplicationPaths appPaths, ILogManager logManager)
{
// TODO: Show splash here