Merge pull request #5898 from arizvisa/GH-5882

Fixed a type-o in the VMWare builder when locating the dhcp configuration file on Linux.
This commit is contained in:
Matthew Hooker 2018-02-13 16:03:18 -08:00 committed by GitHub
commit 55a2828b65
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

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