aboutsummaryrefslogtreecommitdiff
path: root/Jellyfin.Server/Migrations/Routines/CreateUserLoggingConfigFile.cs
diff options
context:
space:
mode:
authordkanada <dkanada@users.noreply.github.com>2020-07-20 23:38:28 +0900
committerJoshua M. Boniface <joshua@boniface.me>2020-07-27 18:53:09 -0400
commit349b789492f0f99657548fbf2e52c1f1d692d303 (patch)
tree275e7d2b21fac01e72e73c8cd114b5e70e119365 /Jellyfin.Server/Migrations/Routines/CreateUserLoggingConfigFile.cs
parent0ee0aa89413c95d37e0d8cf327d887b69121282e (diff)
Merge pull request #3616 from crobibero/migration-new-install
Allow migration to optionally run on fresh install (cherry picked from commit 107cf21f26174cc97ee5bb213aa8ad7eb72d6338) Signed-off-by: Joshua M. Boniface <joshua@boniface.me>
Diffstat (limited to 'Jellyfin.Server/Migrations/Routines/CreateUserLoggingConfigFile.cs')
-rw-r--r--Jellyfin.Server/Migrations/Routines/CreateUserLoggingConfigFile.cs3
1 files changed, 3 insertions, 0 deletions
diff --git a/Jellyfin.Server/Migrations/Routines/CreateUserLoggingConfigFile.cs b/Jellyfin.Server/Migrations/Routines/CreateUserLoggingConfigFile.cs
index b15e09290..6821630db 100644
--- a/Jellyfin.Server/Migrations/Routines/CreateUserLoggingConfigFile.cs
+++ b/Jellyfin.Server/Migrations/Routines/CreateUserLoggingConfigFile.cs
@@ -49,6 +49,9 @@ namespace Jellyfin.Server.Migrations.Routines
public string Name => "CreateLoggingConfigHeirarchy";
/// <inheritdoc/>
+ public bool PerformOnNewInstall => false;
+
+ /// <inheritdoc/>
public void Perform()
{
var logDirectory = _appPaths.ConfigurationDirectoryPath;