2013-08-27 00:57:23 -04:00
|
|
|
package openstack
|
|
|
|
|
|
|
|
import (
|
|
|
|
gossh "code.google.com/p/go.crypto/ssh"
|
|
|
|
"errors"
|
|
|
|
"fmt"
|
|
|
|
"github.com/mitchellh/packer/communicator/ssh"
|
|
|
|
"github.com/rackspace/gophercloud"
|
|
|
|
"time"
|
|
|
|
)
|
|
|
|
|
|
|
|
// SSHAddress returns a function that can be given to the SSH communicator
|
|
|
|
// for determining the SSH address based on the server AccessIPv4 setting..
|
2013-08-28 01:08:18 -04:00
|
|
|
func SSHAddress(csp gophercloud.CloudServersProvider, port int) func(map[string]interface{}) (string, error) {
|
2013-08-27 00:57:23 -04:00
|
|
|
return func(state map[string]interface{}) (string, error) {
|
|
|
|
for j := 0; j < 2; j++ {
|
|
|
|
s := state["server"].(*gophercloud.Server)
|
|
|
|
if s.AccessIPv4 != "" {
|
|
|
|
return fmt.Sprintf("%s:%d", s.AccessIPv4, port), nil
|
|
|
|
}
|
|
|
|
serverState, err := csp.ServerById(s.Id)
|
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
return "", err
|
|
|
|
}
|
|
|
|
|
|
|
|
state["server"] = serverState
|
|
|
|
time.Sleep(1 * time.Second)
|
|
|
|
}
|
|
|
|
|
|
|
|
return "", errors.New("couldn't determine IP address for server")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// SSHConfig returns a function that can be used for the SSH communicator
|
|
|
|
// config for connecting to the instance created over SSH using the generated
|
|
|
|
// private key.
|
|
|
|
func SSHConfig(username string) func(map[string]interface{}) (*gossh.ClientConfig, error) {
|
|
|
|
return func(state map[string]interface{}) (*gossh.ClientConfig, error) {
|
|
|
|
privateKey := state["privateKey"].(string)
|
|
|
|
|
|
|
|
keyring := new(ssh.SimpleKeychain)
|
|
|
|
if err := keyring.AddPEMKey(privateKey); err != nil {
|
|
|
|
return nil, fmt.Errorf("Error setting up SSH config: %s", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
return &gossh.ClientConfig{
|
|
|
|
User: username,
|
|
|
|
Auth: []gossh.ClientAuth{
|
|
|
|
gossh.ClientAuthKeyring(keyring),
|
|
|
|
},
|
|
|
|
}, nil
|
|
|
|
}
|
|
|
|
}
|