Add login success print test

This commit is contained in:
Cole Deck 2022-10-11 20:20:08 -05:00
parent b0457865d6
commit a374ec73b4

View File

@ -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
return True
fprint(output)