本文整理汇总了Python中lib.util.Util.probe_send_expect方法的典型用法代码示例。如果您正苦于以下问题:Python Util.probe_send_expect方法的具体用法?Python Util.probe_send_expect怎么用?Python Util.probe_send_expect使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类lib.util.Util
的用法示例。
在下文中一共展示了Util.probe_send_expect方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: NodeHead
# 需要导入模块: from lib.util import Util [as 别名]
# 或者: from lib.util.Util import probe_send_expect [as 别名]
if download:
head_node = NodeHead(Define.NODE_HEAD_NAME, Define.NODE_DEFAULT_USERNAME)
file_json_step = Define.PATH_SNIC_JSON_LINUX + "wget_ucsm_firmware.json"
Util.run_step_list(head_node.get_ssh(), file_json_step)
ucsm = UCSM(Define.UCSM_HOSTNAME);
ssh = ucsm.get_ssh()
for i in range(len(Define.IMAGE_LIST)):
ssh.send_expect_prompt("top")
ssh.send_expect_prompt("scope firmware")
ssh.send("download image " + Define.CMD_SCP_IMAGE_LIST[i])
ssh.expect(Define.PATTERN_PASSWORD)
ssh.send_expect_prompt(Define.NODE_DEFAULT_PASSWORD)
ssh.send_expect_prompt("scope download-task " + Define.IMAGE_LIST[i])
ret = Util.probe_send_expect(ssh, "show", "Downloaded", 60, 10)
if not ret: exit()
ssh.send_expect_prompt("top")
ssh.send_expect_prompt("scope firmware")
ssh.send_expect_prompt("scope auto-install")
ssh.send("install infra infra-vers 2.5(1." + str(Define.UCSM_BUNDLE_LATEST_BUILD_NUMBER) + ")A")
ssh.expect("yes\/no\):")
ssh.send_expect_prompt("yes")
ssh.exit()
time.sleep(300)
ucsm = UCSM(Define.UCSM_HOSTNAME);
ssh = ucsm.get_ssh()