b1497b951c
code.google.com/p/go.crypto/ssh is now at golang.org/x/crypto/ssh as of https://code.google.com/p/go/source/detail?spec=svn.crypto.69e2a90ed92d03812364aeb947b7068dc42e561e&repo=crypto&r=8fec09c61d5d66f460d227fd1df3473d7e015bc6 Using the code.google.com import redirects properly, but runs into issues if you try to use a subpackage of `ssh`, e.g. `agent` which refers to golang.org/x/crypto/ssh causing conflicts if your types expect code.google.com/p/go.crypto/ssh. This is a precursor to a PR for #1066.
52 lines
1.1 KiB
Go
52 lines
1.1 KiB
Go
package common
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"golang.org/x/crypto/ssh"
|
|
"github.com/mitchellh/multistep"
|
|
commonssh "github.com/mitchellh/packer/common/ssh"
|
|
packerssh "github.com/mitchellh/packer/communicator/ssh"
|
|
)
|
|
|
|
func SSHAddress(state multistep.StateBag) (string, error) {
|
|
vmName := state.Get("vmName").(string)
|
|
driver := state.Get("driver").(Driver)
|
|
|
|
mac, err := driver.Mac(vmName)
|
|
if err != nil {
|
|
return "", err
|
|
}
|
|
|
|
ip, err := driver.IpAddress(mac)
|
|
if err != nil {
|
|
return "", err
|
|
}
|
|
|
|
return fmt.Sprintf("%s:22", ip), nil
|
|
}
|
|
|
|
func SSHConfigFunc(config SSHConfig) func(multistep.StateBag) (*ssh.ClientConfig, error) {
|
|
return func(state multistep.StateBag) (*ssh.ClientConfig, error) {
|
|
auth := []ssh.AuthMethod{
|
|
ssh.Password(config.SSHPassword),
|
|
ssh.KeyboardInteractive(
|
|
packerssh.PasswordKeyboardInteractive(config.SSHPassword)),
|
|
}
|
|
|
|
if config.SSHKeyPath != "" {
|
|
signer, err := commonssh.FileSigner(config.SSHKeyPath)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
auth = append(auth, ssh.PublicKeys(signer))
|
|
}
|
|
|
|
return &ssh.ClientConfig{
|
|
User: config.SSHUser,
|
|
Auth: auth,
|
|
}, nil
|
|
}
|
|
}
|