Resolves #1256, add warning mesasge to VMware ESXi driver

This commit is contained in:
Yuya Kusakabe 2014-06-25 11:20:24 +09:00
parent fcec036865
commit 2b8ebe65e4
1 changed files with 1 additions and 1 deletions

View File

@ -23,7 +23,7 @@ func (c *StepUploadTools) Run(state multistep.StateBag) multistep.StepAction {
if c.RemoteType == "esx5" {
if err := driver.ToolsInstall(); err != nil {
state.Put("error", fmt.Errorf("Couldn't mount VMware tools ISO."))
state.Put("error", fmt.Errorf("Couldn't mount VMware tools ISO. Please check the 'guest_os_type' in your template.json."))
}
return multistep.ActionContinue
}