Lines Matching full:session
4 def internal_yum_update(session, command, prompt, timeout):
8 @param session: shell session stablished to the host
9 @param command: Command to be sent to the shell session
12 the shell session.
14 session.sendline(command)
17 match = session.read_until_last_line_matches(
22 session.sendline("y")
43 session = vm.wait_for_login(timeout=timeout)
45 internal_yum_update(session, "yum update", params.get("shell_prompt"), 600)
46 internal_yum_update(session, "yum update kernel",
49 session.close()