Commit 677498a5 authored by Mitchell Hashimoto's avatar Mitchell Hashimoto

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

builder/vmware: Run stat on vmware when checksum type = none
parents 95dd7974 88fac0b4
...@@ -396,10 +396,17 @@ func (d *ESX5Driver) upload(dst, src string) error { ...@@ -396,10 +396,17 @@ func (d *ESX5Driver) upload(dst, src string) error {
} }
func (d *ESX5Driver) verifyChecksum(ctype string, hash string, file string) bool { func (d *ESX5Driver) verifyChecksum(ctype string, hash string, file string) bool {
stdin := bytes.NewBufferString(fmt.Sprintf("%s %s", hash, file)) if (ctype == "none") {
_, err := d.run(stdin, fmt.Sprintf("%ssum", ctype), "-c") err := d.sh("stat", file)
if err != nil { if err != nil {
return false 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 return true
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment