From aa2224db4373e0fbd971183d3077bed790340f30 Mon Sep 17 00:00:00 2001 From: Danny Bessems Date: Thu, 2 Mar 2023 17:03:17 +0100 Subject: [PATCH] Fix flag name --- cmd/npp-prepper/main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/npp-prepper/main.go b/cmd/npp-prepper/main.go index 9e7d50e..3036318 100644 --- a/cmd/npp-prepper/main.go +++ b/cmd/npp-prepper/main.go @@ -31,7 +31,7 @@ var Commands struct { Name string `short:"n" long:"name" description:"Name of virtual machine" required:"true"` Datacenter string `long:"datacenter" description:"Name of datacenter" required:"true"` Network string `long:"portgroup" description:"Name of network portgroup" required:"true"` - DisableOvfTransport bool `long:"ovftransport" description:"Disable the OVF transport 'VMware Tools'"` + DisableOvfTransport bool `long:"disableovftransport" description:"Disable the OVF transport 'VMware Tools'"` } // `command:"virtualmachine" alias:"vm" description:"Configure a virtual machine for usage of Network Protocol Profiles"` GuestOS struct { } // `command:"guestos" alias:"os" description:"Configure guest OS network with allocated IP address"`