Skip to content

Commit

Permalink
Merge pull request #455 from cmacgreg/disabled_StrictHostKeyChecking_fix
Browse files Browse the repository at this point in the history
StrictHostKeyChecking=off should be StrictHostKeyChecking=no
  • Loading branch information
Raihaan Shouhell committed May 10, 2020
2 parents 0582c56 + 4a23aa4 commit 91f48a7
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
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>

0 comments on commit 91f48a7

Please sign in to comment.