This article provides a list of possible VMware Update Manager/esxupdate error codes that may be displayed if there are issues while executing the esxupdate utility or when an interaction is necessary. The esxupdate utility can be used to patch ESX/ESXi hosts and can be invoked as a standalone utility directly on the ESX/ESXi host. Also, VMware Update Manager uses it as a patching mechanism.
VisorSetupError(EsxupdateError): description = 'There was an error setting up ESXi installation destination' errno = 17
MaintenanceModeError(EsxupdateError): description = 'Maintenance mode is not enabled or could not be determined.' errno = 18
PostScriptError(EsxupdateError): description = 'A post-transaction script failed with a nonzero exit code. '\ 'Examine esxupdate logs for more details. ' errno = 19
VibSignatureError(EsxupdateError): """ Base for all Vib signature errors """ pass
VibSigMissingError(VibSignatureError): description = 'Vib signature is missing.' errno = 20
BundleFormatError(EsxupdateError): description = 'Invalid bundle ZIP archive, or missing metadata.zip inside.' errno = 27
UnsupportedCommandError(EsxupdateError): description = 'The requested command is not supported on the platform.' errno = 28
Additional Information
Warning Error Codes
The follow codes can be seen when an interaction is necessary:
NeedsRebootResult(NormalExit): description = 'The update completed successfully, ' \ 'but the system needs to be ' \ 'rebooted for the changes to be effective.' errno = 80
HostdRestartResult(NormalExit): description = 'Hostd needs to be restarted to complete installation.' errno = 81
HostNotChanged(NormalExit): description = 'Host was not updated, no changes required.' errno = 82