Commit 32b714e0 authored by Chris Bednarski's avatar Chris Bednarski

Update code.google.com/gosshold/ssh to point to golang.org/x/crypto/ssh, since...

Update code.google.com/gosshold/ssh to point to golang.org/x/crypto/ssh, since this has been moved into core now

Fixes #2515
parent 84abbc2f
......@@ -10,11 +10,11 @@ import (
"os"
"runtime"
"code.google.com/p/gosshold/ssh"
"github.com/digitalocean/godo"
"github.com/mitchellh/multistep"
"github.com/mitchellh/packer/common/uuid"
"github.com/mitchellh/packer/packer"
"golang.org/x/crypto/ssh"
)
type stepCreateSSHKey struct {
......
package googlecompute
import (
"code.google.com/p/gosshold/ssh"
"crypto/rand"
"crypto/rsa"
"crypto/x509"
"encoding/pem"
"fmt"
"os"
"github.com/mitchellh/multistep"
"github.com/mitchellh/packer/packer"
"os"
"golang.org/x/crypto/ssh"
)
// StepCreateSSHKey represents a Packer build step that generates SSH key pairs.
......
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