From d6e5342ecef48411afb3a85cfd4af5b492cc1bd1 Mon Sep 17 00:00:00 2001 From: Ali Rizvi-Santiago Date: Tue, 13 Feb 2018 17:27:12 -0600 Subject: [PATCH] Fixed a type-o in the VMWare builder when locating the dhcp configuration file on Linux. Closes issue #5882. --- builder/vmware/common/driver_workstation_unix.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/builder/vmware/common/driver_workstation_unix.go b/builder/vmware/common/driver_workstation_unix.go index 45e94d21e..8b6a7f60b 100644 --- a/builder/vmware/common/driver_workstation_unix.go +++ b/builder/vmware/common/driver_workstation_unix.go @@ -59,7 +59,7 @@ func workstationDhcpConfPath(device string) string { log.Printf("Error finding VMware root: %s", err) return "" } - return filepath.Join(base, device, "dhcp/dhcpd.conf") + return filepath.Join(base, device, "dhcp/dhcp.conf") } func workstationVmnetnatConfPath(device string) string {