Merge pull request #5898 from arizvisa/GH-5882

Fixed a type-o in the VMWare builder when locating the dhcp configuration file on Linux.
pull/5899/head
Matthew Hooker 8 years ago committed by GitHub
commit 55a2828b65
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -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 {

Loading…
Cancel
Save