From 766e5c77efbcdab8ba09f0c4e004a5b68f41f520 Mon Sep 17 00:00:00 2001 From: Adrien Delorme Date: Mon, 14 Oct 2019 16:14:29 +0200 Subject: [PATCH] builder.vmware.vmx: remove duplicate RemoteType field. --- builder/vmware/vmx/config.go | 5 ----- 1 file changed, 5 deletions(-) diff --git a/builder/vmware/vmx/config.go b/builder/vmware/vmx/config.go index 279a76377..f28e98115 100644 --- a/builder/vmware/vmx/config.go +++ b/builder/vmware/vmx/config.go @@ -43,11 +43,6 @@ type Config struct { // scenarios. Most users will wish to create a full clone instead. Defaults // to false. Linked bool `mapstructure:"linked" required:"false"` - // The type of remote machine that will be used to - // build this VM rather than a local desktop product. The only value accepted - // for this currently is esx5. If this is not set, a desktop product will - // be used. By default, this is not set. - RemoteType string `mapstructure:"remote_type" required:"false"` // Path to the source VMX file to clone. If // remote_type is enabled then this specifies a path on the remote_host. SourcePath string `mapstructure:"source_path" required:"true"`