1
0
mirror of https://github.com/opinkerfi/nagios-plugins.git synced 2024-11-22 18:33:45 +01:00
This commit is contained in:
Páll Guðjón Sigurðsson 2010-09-02 23:58:49 +00:00
parent b74dfb8f2f
commit 268169c9d4

View File

@ -52,7 +52,7 @@ summary=""
from sys import exit from sys import exit
from sys import argv from sys import argv
from os import getenv,putenv from os import getenv,putenv,environ
import subprocess import subprocess
@ -124,9 +124,7 @@ def set_path(path):
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) environ['PATH'] = current_path
print "current path: ", current_path
print "put: %s" %(getenv('PATH'))