builder/vmware: clarify guestiphack error message [GH-639]

This commit is contained in:
Mitchell Hashimoto 2013-12-07 10:31:57 -08:00
parent 956f49f439
commit 2789281285
1 changed files with 2 additions and 1 deletions

View File

@ -314,7 +314,8 @@ func (d *ESX5Driver) checkGuestIPHackEnabled() error {
}
if record["IntValue"] != "1" {
return errors.New("GuestIPHack is required, enable with:\n" +
return errors.New(
"GuestIPHack is required, enable by running this on the ESX machine:\n" +
"esxcli system settings advanced set -o /Net/GuestIPHack -i 1")
}