Merge pull request #192 from dougm/fusion-leases-path

builder/vmware: fix Fusion DhcpLeasesPath
This commit is contained in:
Mitchell Hashimoto 2013-07-17 16:23:28 -07:00
commit 9ab04e953b
1 changed files with 1 additions and 1 deletions

View File

@ -124,7 +124,7 @@ func (d *Fusion5Driver) ToolsIsoPath(k string) string {
}
func (d *Fusion5Driver) DhcpLeasesPath(device string) string {
return "/etc/vmware/vmnet-dhcpd-" + device + ".leases"
return "/var/db/vmware/vmnet-dhcpd-" + device + ".leases"
}
func (d *Fusion5Driver) runAndLog(cmd *exec.Cmd) (string, string, error) {