diff --git a/nsclient/trunk/scripts/check_eva/check_eva.exe b/nsclient/trunk/scripts/check_eva/check_eva.exe index e5d692d..68cf053 100644 Binary files a/nsclient/trunk/scripts/check_eva/check_eva.exe and b/nsclient/trunk/scripts/check_eva/check_eva.exe differ diff --git a/nsclient/trunk/scripts/check_eva/check_eva.py b/nsclient/trunk/scripts/check_eva/check_eva.py index b2e3cd7..8c134fd 100644 --- a/nsclient/trunk/scripts/check_eva/check_eva.py +++ b/nsclient/trunk/scripts/check_eva/check_eva.py @@ -48,6 +48,8 @@ escape_newlines = False check_system = None # By default check all systems proxyserver = None +server_side_troubleshooting = False # set to true, if you do not have sssu binary handy + # No real need to change anything below here version="1.0" ok=0 @@ -206,7 +208,9 @@ def run_sssu(system=None, command="ls system full"): commandstring = "sssu " for i in commands: commandstring = commandstring + '"%s" '% i - commandstring = 'cat "debug/%s"' % command + global server_side_troubleshooting + if server_side_troubleshooting == True: + commandstring = 'cat "debug/%s"' % command #print mystring #if command == "ls system full": diff --git a/nsclient/trunk/scripts/check_eva/library.zip b/nsclient/trunk/scripts/check_eva/library.zip index 3eba3cd..d838dee 100644 Binary files a/nsclient/trunk/scripts/check_eva/library.zip and b/nsclient/trunk/scripts/check_eva/library.zip differ