From 85caf9d8d763a72823a45bf0a0e09ace10e9c507 Mon Sep 17 00:00:00 2001 From: Paul Hinze Date: Wed, 11 Mar 2015 15:48:47 -0500 Subject: [PATCH] helper/ssh: update import location go's ssh package now lives canonically at `golang.org/x/crypto/ssh` see https://godoc.org/golang.org/x/crypto/ssh closes #1179 --- helper/ssh/communicator.go | 2 +- helper/ssh/communicator_test.go | 2 +- helper/ssh/password.go | 2 +- helper/ssh/password_test.go | 2 +- helper/ssh/provisioner.go | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/helper/ssh/communicator.go b/helper/ssh/communicator.go index 186fd4824..817f37368 100644 --- a/helper/ssh/communicator.go +++ b/helper/ssh/communicator.go @@ -14,7 +14,7 @@ import ( "sync" "time" - "code.google.com/p/go.crypto/ssh" + "golang.org/x/crypto/ssh" ) // RemoteCmd represents a remote command being prepared or run. diff --git a/helper/ssh/communicator_test.go b/helper/ssh/communicator_test.go index 2e16e1482..0e80c9415 100644 --- a/helper/ssh/communicator_test.go +++ b/helper/ssh/communicator_test.go @@ -4,7 +4,7 @@ package ssh import ( "bytes" - "code.google.com/p/go.crypto/ssh" + "golang.org/x/crypto/ssh" "fmt" "net" "testing" diff --git a/helper/ssh/password.go b/helper/ssh/password.go index 934bcd01f..8db6f82da 100644 --- a/helper/ssh/password.go +++ b/helper/ssh/password.go @@ -1,7 +1,7 @@ package ssh import ( - "code.google.com/p/go.crypto/ssh" + "golang.org/x/crypto/ssh" "log" ) diff --git a/helper/ssh/password_test.go b/helper/ssh/password_test.go index e74b46e06..6e3e0a257 100644 --- a/helper/ssh/password_test.go +++ b/helper/ssh/password_test.go @@ -1,7 +1,7 @@ package ssh import ( - "code.google.com/p/go.crypto/ssh" + "golang.org/x/crypto/ssh" "reflect" "testing" ) diff --git a/helper/ssh/provisioner.go b/helper/ssh/provisioner.go index baebbd9b6..2d60d8934 100644 --- a/helper/ssh/provisioner.go +++ b/helper/ssh/provisioner.go @@ -7,7 +7,7 @@ import ( "log" "time" - "code.google.com/p/go.crypto/ssh" + "golang.org/x/crypto/ssh" "github.com/hashicorp/terraform/terraform" "github.com/mitchellh/go-homedir" "github.com/mitchellh/mapstructure"