Skip to content
Snippets Groups Projects
Commit e81edf72 authored by Manuel Franceschini's avatar Manuel Franceschini
Browse files

gnt-node: Fix bug that inverts ssh-key-check behavior


Signed-off-by: default avatarManuel Franceschini <livewire@google.com>
Reviewed-by: default avatarIustin Pop <iustin@google.com>
parent 2c9cf6bb
No related merge requests found
...@@ -148,7 +148,7 @@ def _RunSetupSSH(options, nodes): ...@@ -148,7 +148,7 @@ def _RunSetupSSH(options, nodes):
cmd.append("--debug") cmd.append("--debug")
elif options.verbose: elif options.verbose:
cmd.append("--verbose") cmd.append("--verbose")
if options.ssh_key_check: if not options.ssh_key_check:
cmd.append("--no-ssh-key-check") cmd.append("--no-ssh-key-check")
cmd.extend(nodes) cmd.extend(nodes)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment