mirror of
https://github.com/Jackett/Jackett.git
synced 2025-09-17 17:34:09 +02:00
add --NoUpdates option
This commit is contained in:
@@ -69,6 +69,9 @@ namespace Jackett.Common.Models.Config
|
||||
[Option("PIDFile", HelpText = "Specify the location of PID file")]
|
||||
public string PIDFile { get; set; }
|
||||
|
||||
[Option("NoUpdates", HelpText = "Disable automatic updates")]
|
||||
public bool NoUpdates { get; set; }
|
||||
|
||||
public RuntimeSettings ToRunTimeSettings()
|
||||
{
|
||||
var options = this;
|
||||
@@ -102,6 +105,7 @@ namespace Jackett.Common.Models.Config
|
||||
// Ignore SSL errors on Curl
|
||||
runtimeSettings.IgnoreSslErrors = options.IgnoreSslErrors;
|
||||
runtimeSettings.NoRestart = options.NoRestart;
|
||||
runtimeSettings.NoUpdates = options.NoUpdates;
|
||||
|
||||
if (!string.IsNullOrWhiteSpace(options.DataFolder))
|
||||
runtimeSettings.CustomDataFolder = options.DataFolder;
|
||||
|
Reference in New Issue
Block a user