-
Notifications
You must be signed in to change notification settings - Fork 53
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
communicator: fix SSH config typo (#124)
- Loading branch information
1 parent
62ac7b7
commit 42da5e2
Showing
2 changed files
with
2 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -28,7 +28,7 @@ | |
(unless the user has set the `-debug` flag). Defaults to "false"; | ||
currently only works on guests with `sed` installed. | ||
|
||
- `ssh_key_exchange_algorithms` ([]string) - If set, Packer will override the value of key exchange (kex) altorighms | ||
- `ssh_key_exchange_algorithms` ([]string) - If set, Packer will override the value of key exchange (kex) algorithms | ||
supported by default by golang. Acceptable values include: | ||
"[email protected]", "ecdh-sha2-nistp256", | ||
"ecdh-sha2-nistp384", "ecdh-sha2-nistp521", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -103,7 +103,7 @@ type SSH struct { | |
// (unless the user has set the `-debug` flag). Defaults to "false"; | ||
// currently only works on guests with `sed` installed. | ||
SSHClearAuthorizedKeys bool `mapstructure:"ssh_clear_authorized_keys"` | ||
// If set, Packer will override the value of key exchange (kex) altorighms | ||
// If set, Packer will override the value of key exchange (kex) algorithms | ||
// supported by default by golang. Acceptable values include: | ||
// "[email protected]", "ecdh-sha2-nistp256", | ||
// "ecdh-sha2-nistp384", "ecdh-sha2-nistp521", | ||
|