Merge pull request #2323 from israelshirk/feature/vmware-nonesum

builder/vmware: Run stat on vmware when checksum type = none
This commit is contained in:
Mitchell Hashimoto 2015-06-29 09:32:08 -07:00
commit 677498a55c

View File

@ -396,11 +396,18 @@ func (d *ESX5Driver) upload(dst, src string) error {
}
func (d *ESX5Driver) verifyChecksum(ctype string, hash string, file string) bool {
if (ctype == "none") {
err := d.sh("stat", file)
if err != nil {
return false
}
} else {
stdin := bytes.NewBufferString(fmt.Sprintf("%s %s", hash, file))
_, err := d.run(stdin, fmt.Sprintf("%ssum", ctype), "-c")
if err != nil {
return false
}
}
return true
}