mirror of
https://github.com/opinkerfi/nagios-plugins.git
synced 2024-11-22 10:23:46 +01:00
This commit is contained in:
parent
fd83e788bc
commit
2083b966b9
@ -117,14 +117,13 @@ def add_summary(text):
|
|||||||
|
|
||||||
def set_path(path):
|
def set_path(path):
|
||||||
current_path = getenv('PATH')
|
current_path = getenv('PATH')
|
||||||
if path == '':
|
if current_path.find('C:\\') > -1: # We are on this platform
|
||||||
if current_path.find('C:\\') > -1: # We are on this platform
|
path = ";C:\Program Files\Hewlett-Packard\Sanworks\Element Manager for StorageWorks HSV"
|
||||||
path = ";C:\Program Files\Hewlett-Packard\Sanworks\Element Manager for StorageWorks HSV"
|
path = path + ";C:\Program Files (x86)\Compaq\Hpacucli\Bin\hpacucli.exe"
|
||||||
path = path + ";C:\Program Files (x86)\Compaq\Hpacucli\Bin\hpacucli.exe"
|
path = path + ";C:\Program Files\Compaq\Hpacucli\Bin\hpacucli.exe"
|
||||||
path = path + ";C:\Program Files\Compaq\Hpacucli\Bin\hpacucli.exe"
|
print "Tons of path added"
|
||||||
print "Tons of path added"
|
else:
|
||||||
else:
|
path = ":/usr/local/bin"
|
||||||
path = ":/usr/local/bin"
|
|
||||||
current_path = "%s%s" % (current_path,path)
|
current_path = "%s%s" % (current_path,path)
|
||||||
putenv('PATH', current_path)
|
putenv('PATH', current_path)
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user