Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

keymaster: enable round-robin dialer by default. #91

Merged
merged 3 commits into from
Jun 12, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 8 additions & 7 deletions cmd/keymaster/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -53,24 +53,25 @@ var (
)

var (
checkDevices = flag.Bool("checkDevices", false,
"CheckU2F devices in your system")
configFilename = flag.String("config",
filepath.Join(getUserHomeDir(), keymasterSubdir, "client_config.yml"),
"The filename of the configuration")
rootCAFilename = flag.String("rootCAFilename", "",
"(optional) name for using non OS root CA to verify TLS connections")
configHost = flag.String("configHost", "",
"Get a bootstrap config from this host")
cliUsername = flag.String("username", "", "username for keymaster")
checkDevices = flag.Bool("checkDevices", false,
"CheckU2F devices in your system")
cliFilePrefix = flag.String("fileprefix", "",
"Prefix for the output files")
rootCAFilename = flag.String("rootCAFilename", "",
"(optional) name for using non OS root CA to verify TLS connections")
roundRobinDialer = flag.Bool("roundRobinDialer", false,
"If true, use the smart round-robin dialer")
webauthBrowser = flag.String("webauthBrowser", "",
"Browser command to use for webauth")
cliUsername = flag.String("username", "", "username for keymaster")
printVersion = flag.Bool("version", false,
"Print version and exit")
webauthBrowser = flag.String("webauthBrowser", "",
"Browser command to use for webauth")

FilePrefix = "keymaster"
)

Expand Down
Loading