Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
小 白蛋
Packer
Commits
259986e7
Commit
259986e7
authored
12 years ago
by
Mitchell Hashimoto
Browse files
Options
Download
Email Patches
Plain Diff
builder/virtualbox, builder/vmware: keyboard-interactive [GH-121]
parent
40e9f9a7
v0.5.2
v0.5.1
v0.5.0
v0.4.1
v0.4.0
v0.3.11
v0.3.10
v0.3.9
v0.3.8
v0.3.7
v0.3.6
v0.3.5
v0.3.4
v0.3.3
v0.3.2
v0.3.1
v0.3.0
v0.2.3
v0.2.2
v0.2.1
v0.2.0
v0.1.5
v0.1.4
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
CHANGELOG.md
+2
-0
CHANGELOG.md
builder/virtualbox/step_wait_for_ssh.go
+2
-0
builder/virtualbox/step_wait_for_ssh.go
builder/vmware/step_wait_for_ssh.go
+2
-0
builder/vmware/step_wait_for_ssh.go
with
6 additions
and
0 deletions
+6
-0
CHANGELOG.md
+
2
-
0
View file @
259986e7
...
...
@@ -16,6 +16,8 @@ IMPROVEMENTS:
*
core: Template syntax errors now show line and character number. [GH-56]
*
amazon-ebs: Access key and secret access key default to
environmental variables. [GH-40]
*
virtualbox: Send password for keyboard-interactive auth [GH-121]
*
vmware: Send password for keyboard-interactive auth [GH-121]
BUG FIXES:
...
...
This diff is collapsed.
Click to expand it.
builder/virtualbox/step_wait_for_ssh.go
+
2
-
0
View file @
259986e7
...
...
@@ -112,6 +112,8 @@ func (s *stepWaitForSSH) waitForSSH(state map[string]interface{}) (packer.Commun
User
:
config
.
SSHUser
,
Auth
:
[]
gossh
.
ClientAuth
{
gossh
.
ClientAuthPassword
(
ssh
.
Password
(
config
.
SSHPassword
)),
gossh
.
ClientAuthKeyboardInteractive
(
ssh
.
PasswordKeyboardInteractive
(
config
.
SSHPassword
)),
},
}
...
...
This diff is collapsed.
Click to expand it.
builder/vmware/step_wait_for_ssh.go
+
2
-
0
View file @
259986e7
...
...
@@ -157,6 +157,8 @@ func (s *stepWaitForSSH) waitForSSH(state map[string]interface{}) (packer.Commun
User
:
config
.
SSHUser
,
Auth
:
[]
gossh
.
ClientAuth
{
gossh
.
ClientAuthPassword
(
ssh
.
Password
(
config
.
SSHPassword
)),
gossh
.
ClientAuthKeyboardInteractive
(
ssh
.
PasswordKeyboardInteractive
(
config
.
SSHPassword
)),
},
}
...
...
This diff is collapsed.
Click to expand it.
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment
Menu
Projects
Groups
Snippets
Help