1
0
mirror of https://github.com/Napsty/check_esxi_hardware.git synced 2025-04-04 07:03:39 +02:00

Ensure connection failures are properly detected, closes #18

This commit is contained in:
Peter Newman 2019-07-15 23:11:03 +01:00 committed by GitHub
parent ff3228b804
commit e125bc1cbc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -38,7 +38,7 @@
# Copyright (c) 2015 Andreas Gottwald # Copyright (c) 2015 Andreas Gottwald
# Copyright (c) 2015 Stanislav German-Evtushenko # Copyright (c) 2015 Stanislav German-Evtushenko
# Copyright (c) 2015 Stefan Roos # Copyright (c) 2015 Stefan Roos
# Copyright (c) 2018 Peter Newman # Copyright (c) 2018-2019 Peter Newman
# #
# The VMware 4.1 CIM API is documented here: # The VMware 4.1 CIM API is documented here:
# http://www.vmware.com/support/developer/cim-sdk/4.1/smash/cim_smash_410_prog.pdf # http://www.vmware.com/support/developer/cim-sdk/4.1/smash/cim_smash_410_prog.pdf
@ -659,10 +659,17 @@ if '0.7.' in pywbemversion:
try: try:
conntest = pywbem.WBEMConnection(hosturl, (user,password)) conntest = pywbem.WBEMConnection(hosturl, (user,password))
c = conntest.EnumerateInstances('CIM_Card') c = conntest.EnumerateInstances('CIM_Card')
except: except pywbem.cim_http.Error, arg:
#raise #raise
verboseoutput("Connection error, disable SSL certificate verification (probably patched pywbem)") if ( arg.__str__().find('SSL error: certificate verify failed') >= 0 ):
wbemclient = pywbem.WBEMConnection(hosturl, (user,password), no_verification=True) verboseoutput("Connection error, disable SSL certification verification (probably patched pywbem)")
wbemclient = pywbem.WBEMConnection(hosturl, (user,password), no_verification=True)
else:
verboseoutput("Other pywbem.cim_http.Error, continue as normal")
wbemclient = pywbem.WBEMConnection(hosturl, (user,password))
except:
verboseoutput("Other connection error, continue as normal")
wbemclient = pywbem.WBEMConnection(hosturl, (user,password))
else: else:
verboseoutput("Connection worked") verboseoutput("Connection worked")
wbemclient = pywbem.WBEMConnection(hosturl, (user,password)) wbemclient = pywbem.WBEMConnection(hosturl, (user,password))