Skip to content

Commit

Permalink
No bridged network interfaces by default (#586)
Browse files Browse the repository at this point in the history
Fixes #585
  • Loading branch information
fkorotkov authored Aug 15, 2023
1 parent 050d6a6 commit 637a238
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Sources/tart/Commands/Run.swift
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ struct Run: AsyncParsableCommand {
""", discussion: """
Specify "list" as an interface name (--net-bridged=list) to list the available bridged interfaces.
""", valueName: "interface name"))
var netBridged: [String]
var netBridged: [String] = []

@Flag(help: ArgumentHelp("Use software networking instead of the default shared (NAT) networking",
discussion: "Learn how to configure Softnet for use with Tart here: https://github.com/cirruslabs/softnet"))
Expand Down

0 comments on commit 637a238

Please sign in to comment.