packer-cn/builder/vmware/common/ssh.go

30 lines
500 B
Go
Raw Normal View History

2013-12-24 01:27:01 -05:00
package common
import (
gossh "code.google.com/p/go.crypto/ssh"
"io/ioutil"
"os"
"github.com/mitchellh/packer/communicator/ssh"
)
func sshKeyToKeyring(path string) (gossh.ClientKeyring, error) {
f, err := os.Open(path)
if err != nil {
return nil, err
}
defer f.Close()
keyBytes, err := ioutil.ReadAll(f)
if err != nil {
return nil, err
}
keyring := new(ssh.SimpleKeychain)
if err := keyring.AddPEMKey(string(keyBytes)); err != nil {
return nil, err
}
return keyring, nil
}