remove old files

This commit is contained in:
Marius Pana 2020-07-27 12:05:35 +03:00
parent ff0b9c9275
commit a06ab16bd8
3 changed files with 4 additions and 6711 deletions

View File

@ -1,6 +0,0 @@
# Checkmk active check for Hitachi SVP
Tested on models x, x but according to API should work with VSP G130 G/F350
G/F370 G/F700 G/F900

File diff suppressed because it is too large Load Diff

View File

@ -87,7 +87,7 @@ def query(url):
output_lines = []
def output(line):
if type(line) not in [str, unicode]:
if type(line) not in [str]:
output_lines.append(pprint.pformat(line))
else:
output_lines.append(line)
@ -228,11 +228,11 @@ def main():
# Get stores info
process_stores_info()
process_servicesets_teaming()
process_stores_info_teaming()
process_servicesets_teaming()
process_stores_info_teaming()
sys.stdout.write("\n".join(output_lines) + "\n")
except Exception, e:
except Exception as e:
sys.stderr.write("Connection error: %s" % e)
sys.exit(1)