Commit 0854f95d authored by Nicolas Wavrant's avatar Nicolas Wavrant

stack-monitor: monitor.py doesn't always say "failure"

parent 057f060d
......@@ -91,10 +91,14 @@ def runScripts(directory):
def writeFiles(monitors):
if len(monitors) == 0:
message = "SUCCESS : everything is ok\n"
fail = False
for i in monitors.values():
if i != "" :
fail = True
if fail:
message = "FAILURE : something went wrong\n"
else:
message ="FAILURE : something went wrong\n"
message = "SUCCESS : everything is ok\n"
date = datetime.datetime.now().ctime()
monitors['datetime'] = date
file_bool = os.path.join(monitoring_folder_bool, str(time.time()))
......@@ -126,4 +130,4 @@ if __name__ == "__main__":
exit(0)
else:
exit(1)
\ No newline at end of file
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment