2016-11-13 17:34:36 -05:00
|
|
|
package oneandone
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
2018-01-22 20:21:10 -05:00
|
|
|
|
2017-04-04 16:39:01 -04:00
|
|
|
"github.com/hashicorp/packer/communicator/ssh"
|
2018-01-19 19:18:44 -05:00
|
|
|
"github.com/hashicorp/packer/helper/multistep"
|
2016-11-15 18:17:30 -05:00
|
|
|
gossh "golang.org/x/crypto/ssh"
|
2016-11-13 17:34:36 -05:00
|
|
|
)
|
|
|
|
|
|
|
|
func commHost(state multistep.StateBag) (string, error) {
|
|
|
|
ipAddress := state.Get("server_ip").(string)
|
|
|
|
return ipAddress, nil
|
|
|
|
}
|
|
|
|
|
2016-11-15 18:17:30 -05:00
|
|
|
func sshConfig(state multistep.StateBag) (*gossh.ClientConfig, error) {
|
2016-11-13 17:34:36 -05:00
|
|
|
config := state.Get("config").(*Config)
|
2016-11-15 18:17:30 -05:00
|
|
|
var privateKey string
|
2016-11-13 17:34:36 -05:00
|
|
|
|
2016-11-15 18:17:30 -05:00
|
|
|
var auth []gossh.AuthMethod
|
|
|
|
|
|
|
|
if config.Comm.SSHPassword != "" {
|
|
|
|
auth = []gossh.AuthMethod{
|
|
|
|
gossh.Password(config.Comm.SSHPassword),
|
|
|
|
gossh.KeyboardInteractive(
|
|
|
|
ssh.PasswordKeyboardInteractive(config.Comm.SSHPassword)),
|
|
|
|
}
|
2016-11-13 17:34:36 -05:00
|
|
|
}
|
|
|
|
|
2016-11-15 18:17:30 -05:00
|
|
|
if config.Comm.SSHPrivateKey != "" {
|
|
|
|
if priv, ok := state.GetOk("privateKey"); ok {
|
|
|
|
privateKey = priv.(string)
|
|
|
|
}
|
|
|
|
signer, err := gossh.ParsePrivateKey([]byte(privateKey))
|
|
|
|
if err != nil {
|
|
|
|
return nil, fmt.Errorf("Error setting up SSH config: %s", err)
|
|
|
|
}
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
auth = append(auth, gossh.PublicKeys(signer))
|
|
|
|
}
|
|
|
|
return &gossh.ClientConfig{
|
2017-05-20 16:17:04 -04:00
|
|
|
User: config.Comm.SSHUsername,
|
|
|
|
Auth: auth,
|
|
|
|
HostKeyCallback: gossh.InsecureIgnoreHostKey(),
|
2016-11-13 17:34:36 -05:00
|
|
|
}, nil
|
|
|
|
}
|