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:
commit
55a2828b65
|
@ -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…
Reference in New Issue