Merge pull request #10281 from hashicorp/communicator_helper_move

move communicator helpers into communicator dir
This commit is contained in:
Megan Marsh 2020-11-18 14:10:53 -08:00 committed by GitHub
commit 5323e3f83c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
12 changed files with 7 additions and 7 deletions

View File

@ -6,7 +6,7 @@ import (
"os"
common "github.com/hashicorp/packer/builder/proxmox/common"
"github.com/hashicorp/packer/helper/ssh"
"github.com/hashicorp/packer/helper/communicator/ssh"
"github.com/hashicorp/packer/packer"
"github.com/hashicorp/packer/packer-plugin-sdk/multistep"
"github.com/hashicorp/packer/packer-plugin-sdk/uuid"

View File

@ -6,7 +6,7 @@ import (
"os"
"github.com/hashicorp/packer/helper/communicator"
"github.com/hashicorp/packer/helper/ssh"
"github.com/hashicorp/packer/helper/communicator/ssh"
"github.com/hashicorp/packer/packer"
"github.com/hashicorp/packer/packer-plugin-sdk/multistep"
"github.com/hashicorp/packer/packer-plugin-sdk/uuid"

View File

@ -29,7 +29,7 @@ import (
"github.com/hashicorp/go-getter/v2"
"github.com/hashicorp/packer/helper/communicator"
helperssh "github.com/hashicorp/packer/helper/ssh"
helperssh "github.com/hashicorp/packer/helper/communicator/ssh"
"github.com/hashicorp/packer/packer"
"github.com/hashicorp/packer/packer-plugin-sdk/multistep"
"github.com/hashicorp/packer/packer-plugin-sdk/sdk-internals/communicator/ssh"

View File

@ -8,7 +8,7 @@ import (
"github.com/hashicorp/packer/builder/vsphere/driver"
"github.com/hashicorp/packer/helper/communicator"
"github.com/hashicorp/packer/helper/ssh"
"github.com/hashicorp/packer/helper/communicator/ssh"
"github.com/hashicorp/packer/packer"
"github.com/hashicorp/packer/packer-plugin-sdk/multistep"
"github.com/hashicorp/packer/packer-plugin-sdk/uuid"

View File

@ -12,8 +12,8 @@ import (
"time"
"github.com/hashicorp/hcl/v2/hcldec"
helperssh "github.com/hashicorp/packer/helper/communicator/ssh"
"github.com/hashicorp/packer/helper/config"
helperssh "github.com/hashicorp/packer/helper/ssh"
"github.com/hashicorp/packer/packer"
"github.com/hashicorp/packer/packer-plugin-sdk/multistep"
packerssh "github.com/hashicorp/packer/packer-plugin-sdk/sdk-internals/communicator/ssh"

View File

@ -13,7 +13,7 @@ import (
"golang.org/x/crypto/ssh/terminal"
helperssh "github.com/hashicorp/packer/helper/ssh"
helperssh "github.com/hashicorp/packer/helper/communicator/ssh"
"github.com/hashicorp/packer/packer"
"github.com/hashicorp/packer/packer-plugin-sdk/multistep"
"github.com/hashicorp/packer/packer-plugin-sdk/sdk-internals/communicator/ssh"

View File

@ -9,7 +9,7 @@ import (
"testing"
"time"
helperssh "github.com/hashicorp/packer/helper/ssh"
helperssh "github.com/hashicorp/packer/helper/communicator/ssh"
"golang.org/x/crypto/ssh"
)