Commit 5e3c8c4f authored by Mitchell Hashimoto's avatar Mitchell Hashimoto

builder/virtualbox,vmware: support user templates in SSH key path

[GH-539]
parent 30be4927
...@@ -20,6 +20,8 @@ BUG FIXES: ...@@ -20,6 +20,8 @@ BUG FIXES:
* builder/virtualbox: sleep a bit before export to ensure the sesssion * builder/virtualbox: sleep a bit before export to ensure the sesssion
is unlocked. [GH-512] is unlocked. [GH-512]
* builder/virtualbox: create SATA drives properly on VirtualBox 4.3 [GH-547] * builder/virtualbox: create SATA drives properly on VirtualBox 4.3 [GH-547]
* builder/virtualbox: support user templates in SSH key path. [GH-539]
* builder/vmware: support user templates in SSH key path. [GH-539]
* communicator/ssh: Fix issue where a panic could arise from a nil * communicator/ssh: Fix issue where a panic could arise from a nil
dereference. [GH-525] dereference. [GH-525]
* post-processor/vagrant: Fix issue with VirtualBox OVA. [GH-548] * post-processor/vagrant: Fix issue with VirtualBox OVA. [GH-548]
......
...@@ -154,6 +154,7 @@ func (b *Builder) Prepare(raws ...interface{}) error { ...@@ -154,6 +154,7 @@ func (b *Builder) Prepare(raws ...interface{}) error {
"iso_url": &b.config.RawSingleISOUrl, "iso_url": &b.config.RawSingleISOUrl,
"output_directory": &b.config.OutputDir, "output_directory": &b.config.OutputDir,
"shutdown_command": &b.config.ShutdownCommand, "shutdown_command": &b.config.ShutdownCommand,
"ssh_key_path": &b.config.SSHKeyPath,
"ssh_password": &b.config.SSHPassword, "ssh_password": &b.config.SSHPassword,
"ssh_username": &b.config.SSHUser, "ssh_username": &b.config.SSHUser,
"virtualbox_version_file": &b.config.VBoxVersionFile, "virtualbox_version_file": &b.config.VBoxVersionFile,
......
...@@ -148,6 +148,7 @@ func (b *Builder) Prepare(raws ...interface{}) error { ...@@ -148,6 +148,7 @@ func (b *Builder) Prepare(raws ...interface{}) error {
"iso_url": &b.config.RawSingleISOUrl, "iso_url": &b.config.RawSingleISOUrl,
"output_directory": &b.config.OutputDir, "output_directory": &b.config.OutputDir,
"shutdown_command": &b.config.ShutdownCommand, "shutdown_command": &b.config.ShutdownCommand,
"ssh_key_path": &b.config.SSHKeyPath,
"ssh_password": &b.config.SSHPassword, "ssh_password": &b.config.SSHPassword,
"ssh_username": &b.config.SSHUser, "ssh_username": &b.config.SSHUser,
"tools_upload_flavor": &b.config.ToolsUploadFlavor, "tools_upload_flavor": &b.config.ToolsUploadFlavor,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment