>> I was able to manually start qemu-kvm and then connect to it with ssh. I >> did notice that >after typing in "yes" for the RSA, that it took some time to prompt me for a >password. I then >connected my network cable and when I ran ssh, the password prompt came up >immediately after >typing in "yes". Could this delay be the source of my login timeout problem? > >Yes, that is the problem. > >> Is there some place I can adjust the timeout? > >Sure, line 68, tests_base.cfg: > >login_timeout = 360 > >You can increase that value! >
Increasing the login_timeout value did not solve my problem. It looks like the _remote_login() method in kvm_utils.py does not handle the string "Warning: Permanently added 'localhost' (RSA) to the list of known hosts." So, I added another elif and continue match for "[Wa]arning" and then it worked fine. Jason _______________________________________________ Autotest mailing list [email protected] http://test.kernel.org/cgi-bin/mailman/listinfo/autotest
