Skip to content

Commit

Permalink
Merge pull request #91 from rgooch/rrdialer-default
Browse files Browse the repository at this point in the history
keymaster: enable round-robin dialer by default.
  • Loading branch information
rgooch authored Jun 12, 2024
2 parents a25a83a + bf8ffc5 commit a2caeee
Showing 1 changed file with 8 additions and 7 deletions.
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

0 comments on commit a2caeee

Please sign in to comment.