mirror of
https://github.com/Napsty/check_esxi_hardware.git
synced 2024-11-22 02:13:46 +01:00
Merge pull request #16 from Napsty/pywbem-versions
Distinguish between pywbem 0.7 and 0.8
This commit is contained in:
commit
ec7db6479d
@ -24,7 +24,7 @@
|
|||||||
# Copyright (c) 2008 David Ligeret
|
# Copyright (c) 2008 David Ligeret
|
||||||
# Copyright (c) 2009 Joshua Daniel Franklin
|
# Copyright (c) 2009 Joshua Daniel Franklin
|
||||||
# Copyright (c) 2010 Branden Schneider
|
# Copyright (c) 2010 Branden Schneider
|
||||||
# Copyright (c) 2010-2015 Claudio Kuenzler
|
# Copyright (c) 2010-2016 Claudio Kuenzler
|
||||||
# Copyright (c) 2010 Samir Ibradzic
|
# Copyright (c) 2010 Samir Ibradzic
|
||||||
# Copyright (c) 2010 Aaron Rogers
|
# Copyright (c) 2010 Aaron Rogers
|
||||||
# Copyright (c) 2011 Ludovic Hutin
|
# Copyright (c) 2011 Ludovic Hutin
|
||||||
@ -231,6 +231,10 @@
|
|||||||
#@ Reason : Removed unused sensor_value variable and string import.
|
#@ Reason : Removed unused sensor_value variable and string import.
|
||||||
#@ Reason : Added global hosturl variable declaration after imports.
|
#@ Reason : Added global hosturl variable declaration after imports.
|
||||||
#@---------------------------------------------------
|
#@---------------------------------------------------
|
||||||
|
#@ Date : 20160411
|
||||||
|
#@ Author : Claudio Kuenzler (www.claudiokuenzler.com)
|
||||||
|
#@ Reason : Distinguish between pywbem 0.7 and 0.8 (which is now released)
|
||||||
|
#@---------------------------------------------------
|
||||||
|
|
||||||
import sys
|
import sys
|
||||||
import time
|
import time
|
||||||
@ -239,7 +243,7 @@ import re
|
|||||||
import pkg_resources
|
import pkg_resources
|
||||||
from optparse import OptionParser,OptionGroup
|
from optparse import OptionParser,OptionGroup
|
||||||
|
|
||||||
version = '20151111'
|
version = '20160411'
|
||||||
|
|
||||||
NS = 'root/cimv2'
|
NS = 'root/cimv2'
|
||||||
hosturl = ''
|
hosturl = ''
|
||||||
@ -589,7 +593,7 @@ verboseoutput("Connection to "+hosturl)
|
|||||||
# pywbem 0.7.0 handling is special, some patched 0.7.0 installations work differently
|
# pywbem 0.7.0 handling is special, some patched 0.7.0 installations work differently
|
||||||
pywbemversion = pkg_resources.get_distribution("pywbem").version
|
pywbemversion = pkg_resources.get_distribution("pywbem").version
|
||||||
verboseoutput("Found pywbem version "+pywbemversion)
|
verboseoutput("Found pywbem version "+pywbemversion)
|
||||||
if '0.7.0' in pywbemversion:
|
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')
|
||||||
@ -601,7 +605,7 @@ if '0.7.0' in pywbemversion:
|
|||||||
verboseoutput("Connection worked")
|
verboseoutput("Connection worked")
|
||||||
wbemclient = pywbem.WBEMConnection(hosturl, (user,password))
|
wbemclient = pywbem.WBEMConnection(hosturl, (user,password))
|
||||||
# pywbem 0.8.0 and later
|
# pywbem 0.8.0 and later
|
||||||
elif '0.8.0' in pywbemversion:
|
elif '0.8.' in pywbemversion:
|
||||||
wbemclient = pywbem.WBEMConnection(hosturl, (user,password), NS, no_verification=True)
|
wbemclient = pywbem.WBEMConnection(hosturl, (user,password), NS, no_verification=True)
|
||||||
|
|
||||||
# Add a timeout for the script. When using with Nagios, the Nagios timeout cannot be < than plugin timeout.
|
# Add a timeout for the script. When using with Nagios, the Nagios timeout cannot be < than plugin timeout.
|
||||||
|
Loading…
Reference in New Issue
Block a user