aboutsummaryrefslogtreecommitdiff
path: root/Jellyfin.Server/Migrations/PreStartupRoutines/CreateNetworkConfiguration.cs
diff options
context:
space:
mode:
authorShadowghost <Ghost_of_Stone@web.de>2022-07-20 14:29:30 +0200
committerShadowghost <Ghost_of_Stone@web.de>2022-07-20 14:29:30 +0200
commit2281b8c997dff0fa148bf0f193b37664420aca3e (patch)
tree1f650a3bfe9ed13c11831e1226d8f36bd042a5f3 /Jellyfin.Server/Migrations/PreStartupRoutines/CreateNetworkConfiguration.cs
parenta492082f4e015d6d38368c4ac05d39d236387214 (diff)
Move away from using Collection, simplify code, add proper ordering
Diffstat (limited to 'Jellyfin.Server/Migrations/PreStartupRoutines/CreateNetworkConfiguration.cs')
-rw-r--r--Jellyfin.Server/Migrations/PreStartupRoutines/CreateNetworkConfiguration.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Jellyfin.Server/Migrations/PreStartupRoutines/CreateNetworkConfiguration.cs b/Jellyfin.Server/Migrations/PreStartupRoutines/CreateNetworkConfiguration.cs
index ceeaa26e6..b67017281 100644
--- a/Jellyfin.Server/Migrations/PreStartupRoutines/CreateNetworkConfiguration.cs
+++ b/Jellyfin.Server/Migrations/PreStartupRoutines/CreateNetworkConfiguration.cs
@@ -114,7 +114,7 @@ public class CreateNetworkConfiguration : IMigrationRoutine
public bool IgnoreVirtualInterfaces { get; set; } = true;
- public string VirtualInterfaceNames { get; set; } = "veth*";
+ public string VirtualInterfaceNames { get; set; } = "veth";
public string[] PublishedServerUriBySubnet { get; set; } = Array.Empty<string>();