Skip to content

Commit dbedcd0

Browse files
authored
chore(xfer): update module namespace (#601)
Post-transfer update of the module namespace and refs. Signed-off-by: Ryan Johnson <ryan.johnson@broadcom.com>
1 parent d24876f commit dbedcd0

79 files changed

Lines changed: 97 additions & 97 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

builder/vsphere/clone/builder.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ import (
1313
"github.com/hashicorp/packer-plugin-sdk/multistep"
1414
"github.com/hashicorp/packer-plugin-sdk/multistep/commonsteps"
1515
packersdk "github.com/hashicorp/packer-plugin-sdk/packer"
16-
"github.com/hashicorp/packer-plugin-vsphere/builder/vsphere/common"
17-
"github.com/hashicorp/packer-plugin-vsphere/builder/vsphere/driver"
16+
"github.com/vmware/packer-plugin-vsphere/builder/vsphere/common"
17+
"github.com/vmware/packer-plugin-vsphere/builder/vsphere/driver"
1818
)
1919

2020
type Builder struct {

builder/vsphere/clone/config.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ import (
1414
packersdk "github.com/hashicorp/packer-plugin-sdk/packer"
1515
"github.com/hashicorp/packer-plugin-sdk/template/config"
1616
"github.com/hashicorp/packer-plugin-sdk/template/interpolate"
17-
"github.com/hashicorp/packer-plugin-vsphere/builder/vsphere/common"
17+
"github.com/vmware/packer-plugin-vsphere/builder/vsphere/common"
1818
)
1919

2020
type Config struct {

builder/vsphere/clone/config.hcl2spec.go

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

builder/vsphere/clone/step_clone.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,9 @@ import (
1717
"github.com/hashicorp/packer-plugin-sdk/multistep"
1818
packersdk "github.com/hashicorp/packer-plugin-sdk/packer"
1919
"github.com/hashicorp/packer-plugin-sdk/packerbuilderdata"
20-
"github.com/hashicorp/packer-plugin-vsphere/builder/vsphere/common"
21-
"github.com/hashicorp/packer-plugin-vsphere/builder/vsphere/driver"
2220
"github.com/vmware/govmomi/vim25/types"
21+
"github.com/vmware/packer-plugin-vsphere/builder/vsphere/common"
22+
"github.com/vmware/packer-plugin-vsphere/builder/vsphere/driver"
2323
)
2424

2525
type vAppConfig struct {

builder/vsphere/clone/step_clone.hcl2spec.go

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

builder/vsphere/clone/step_clone_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ import (
1414
"github.com/google/go-cmp/cmp"
1515
"github.com/hashicorp/packer-plugin-sdk/multistep"
1616
packersdk "github.com/hashicorp/packer-plugin-sdk/packer"
17-
"github.com/hashicorp/packer-plugin-vsphere/builder/vsphere/common"
18-
"github.com/hashicorp/packer-plugin-vsphere/builder/vsphere/driver"
17+
"github.com/vmware/packer-plugin-vsphere/builder/vsphere/common"
18+
"github.com/vmware/packer-plugin-vsphere/builder/vsphere/driver"
1919
)
2020

2121
func TestCreateConfig_Prepare(t *testing.T) {

builder/vsphere/clone/step_customize.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@ import (
1515
"github.com/hashicorp/packer-plugin-sdk/multistep"
1616
packersdk "github.com/hashicorp/packer-plugin-sdk/packer"
1717
"github.com/hashicorp/packer-plugin-sdk/template/config"
18-
"github.com/hashicorp/packer-plugin-vsphere/builder/vsphere/driver"
1918
"github.com/vmware/govmomi/vim25/types"
19+
"github.com/vmware/packer-plugin-vsphere/builder/vsphere/driver"
2020
)
2121

2222
var (

builder/vsphere/common/artifact.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ import (
1010
"os"
1111

1212
registryimage "github.com/hashicorp/packer-plugin-sdk/packer/registry/image"
13-
"github.com/hashicorp/packer-plugin-vsphere/builder/vsphere/driver"
1413
"github.com/vmware/govmomi/object"
14+
"github.com/vmware/packer-plugin-vsphere/builder/vsphere/driver"
1515
)
1616

1717
const BuilderId = "jetbrains.vsphere"

builder/vsphere/common/artifact_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@ import (
1010

1111
"github.com/google/go-cmp/cmp"
1212
registryimage "github.com/hashicorp/packer-plugin-sdk/packer/registry/image"
13-
"github.com/hashicorp/packer-plugin-vsphere/builder/vsphere/driver"
1413
"github.com/vmware/govmomi/simulator"
1514
"github.com/vmware/govmomi/vim25/types"
15+
"github.com/vmware/packer-plugin-vsphere/builder/vsphere/driver"
1616
)
1717

1818
func TestArtifactHCPPackerMetadata(t *testing.T) {

builder/vsphere/common/cleanup_vm.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ package common
77
import (
88
"github.com/hashicorp/packer-plugin-sdk/multistep"
99
packersdk "github.com/hashicorp/packer-plugin-sdk/packer"
10-
"github.com/hashicorp/packer-plugin-vsphere/builder/vsphere/driver"
10+
"github.com/vmware/packer-plugin-vsphere/builder/vsphere/driver"
1111
)
1212

1313
func CleanupVM(state multistep.StateBag) {

0 commit comments

Comments
 (0)