diff --git a/auth.py b/auth.py index 34f05d9..647c300 100644 --- a/auth.py +++ b/auth.py @@ -16,11 +16,13 @@ def login(config, user, password, sysid): ssh.run_ssh(config, command, 'scripts') sleep(1) filename = sysid + "success.txt" - if ssh.check_for_file(config, filename, 'receivelogin') == False: + output = ssh.check_for_file(config, filename, 'receivelogin') + if output == False: filename = sysid + "fail.txt" if ssh.check_for_file(config, filename, 'receivelogin') == False: raise ValueError("Unable to determine login status") else: return False else: - return True \ No newline at end of file + return True + fprint(output) \ No newline at end of file