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

StrictHostKeyChecking=off should be StrictHostKeyChecking=no #455

Merged
Merged
Show file tree
Hide file tree
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
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ public enum HostKeyVerificationStrategyEnum {
CHECK_NEW_HARD("check-new-hard", "yes", new CheckNewHardStrategy()),
CHECK_NEW_SOFT("check-new-soft", "accept-new", new CheckNewSoftStrategy()),
ACCEPT_NEW("accept-new", "accept-new", new AcceptNewStrategy()),
OFF("off", "off", new NonVerifyingKeyVerificationStrategy());
OFF("off", "no", new NonVerifyingKeyVerificationStrategy());

private final String displayText;
private final SshHostKeyVerificationStrategy strategy;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,9 +35,9 @@
<li><b><i>check-new-hard = yes</i></b></li>
<li><b><i>check-new-soft = accept-new</i></b></li>
<li><b><i>accept-new = accept-new</i></b></li>
<li><b><i>off = off</i></b></li>
<li><b><i>off = no</i></b></li>
</ul>

<i><strong>Note: </strong></i>With the <i>check-new-hard</i> and <i>check-new-soft</i> strategies you may need to increase the <i>Launch Timeout in seconds</i> because it will now
take until the instance console is ready, which could be several minutes. If the field is blank, it means there is no time-out which will wait indefinitely for the console.
</div>
</div>