Merge pull request #2534 from mitchellh/b-2515

Update code.google.com/gosshold/ssh to point to golang.org/x/crypto/ssh, since this has been moved into core now
This commit is contained in:
Chris Bednarski 2015-08-01 17:16:26 -07:00
commit 5b8e4dc5b4
2 changed files with 4 additions and 3 deletions

View File

@ -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 {

View File

@ -1,15 +1,16 @@
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.