fix multistep path

This commit is contained in:
Matthew Hooker 2018-01-25 14:45:09 -08:00
parent 6dc0bd759a
commit 4dc42942f5
No known key found for this signature in database
GPG Key ID: 7B5F933D9CE8C6A1
7 changed files with 7 additions and 7 deletions

View File

@ -10,8 +10,8 @@ import (
ocommon "github.com/hashicorp/packer/builder/oracle/common" ocommon "github.com/hashicorp/packer/builder/oracle/common"
"github.com/hashicorp/packer/common" "github.com/hashicorp/packer/common"
"github.com/hashicorp/packer/helper/communicator" "github.com/hashicorp/packer/helper/communicator"
"github.com/hashicorp/packer/helper/multistep"
"github.com/hashicorp/packer/packer" "github.com/hashicorp/packer/packer"
"github.com/mitchellh/multistep"
) )
// BuilderId uniquely identifies the builder // BuilderId uniquely identifies the builder

View File

@ -6,8 +6,8 @@ import (
"strings" "strings"
"github.com/hashicorp/go-oracle-terraform/compute" "github.com/hashicorp/go-oracle-terraform/compute"
"github.com/hashicorp/packer/helper/multistep"
"github.com/hashicorp/packer/packer" "github.com/hashicorp/packer/packer"
"github.com/mitchellh/multistep"
) )
type stepAddKeysToAPI struct{} type stepAddKeysToAPI struct{}

View File

@ -6,8 +6,8 @@ import (
"log" "log"
"github.com/hashicorp/go-oracle-terraform/compute" "github.com/hashicorp/go-oracle-terraform/compute"
"github.com/hashicorp/packer/helper/multistep"
"github.com/hashicorp/packer/packer" "github.com/hashicorp/packer/packer"
"github.com/mitchellh/multistep"
) )
type stepCreateInstance struct{} type stepCreateInstance struct{}

View File

@ -6,8 +6,8 @@ import (
"log" "log"
"github.com/hashicorp/go-oracle-terraform/compute" "github.com/hashicorp/go-oracle-terraform/compute"
"github.com/hashicorp/packer/helper/multistep"
"github.com/hashicorp/packer/packer" "github.com/hashicorp/packer/packer"
"github.com/mitchellh/multistep"
) )
type stepCreateIPReservation struct{} type stepCreateIPReservation struct{}

View File

@ -7,8 +7,8 @@ import (
"strings" "strings"
"github.com/hashicorp/go-oracle-terraform/compute" "github.com/hashicorp/go-oracle-terraform/compute"
"github.com/hashicorp/packer/helper/multistep"
"github.com/hashicorp/packer/packer" "github.com/hashicorp/packer/packer"
"github.com/mitchellh/multistep"
) )
type stepSecurity struct{} type stepSecurity struct{}

View File

@ -5,8 +5,8 @@ import (
"fmt" "fmt"
"github.com/hashicorp/go-oracle-terraform/compute" "github.com/hashicorp/go-oracle-terraform/compute"
"github.com/hashicorp/packer/helper/multistep"
"github.com/hashicorp/packer/packer" "github.com/hashicorp/packer/packer"
"github.com/mitchellh/multistep"
) )
type stepSnapshot struct{} type stepSnapshot struct{}

View File

@ -4,7 +4,7 @@ import (
"fmt" "fmt"
packerssh "github.com/hashicorp/packer/communicator/ssh" packerssh "github.com/hashicorp/packer/communicator/ssh"
"github.com/mitchellh/multistep" "github.com/hashicorp/packer/helper/multistep"
"golang.org/x/crypto/ssh" "golang.org/x/crypto/ssh"
) )