本文整理汇总了Python中lib.util.Util.print_host_status方法的典型用法代码示例。如果您正苦于以下问题:Python Util.print_host_status方法的具体用法?Python Util.print_host_status怎么用?Python Util.print_host_status使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类lib.util.Util
的用法示例。
在下文中一共展示了Util.print_host_status方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: NodeCompute
# 需要导入模块: from lib.util import Util [as 别名]
# 或者: from lib.util.Util import print_host_status [as 别名]
result_dict = {}
for host_ip in host_ip_list:
if not host_ip in sp_define.HOST_LIST: continue
ip_suffix = Util.get_ip_field(host_ip, 3)
cmd = cmd_list[i]
#print cmd
cmd = cmd.replace('$$host_suffix$$', ip_suffix)
print "\n"
print '='*30 + host_ip + '='*30
try:
node = NodeCompute(host_ip)
node.run_cmd(cmd)
node.exit()
result_dict[host_ip] = True
except (pexpect.EOF):
# for rhel 7.0 reboot cmd only
if int(ip_suffix) in [131, 132, 141, 142] and cmd == 'reboot':
print "Warning: Connection is closed"
result_dict[host_ip] = True
else:
result_dict[host_ip] = False
except (KeyboardInterrupt, AttributeError, pexpect.TIMEOUT):
print "ERROR: Timeout"
result_dict[host_ip] = False
except:
print "Unexpected error:", sys.exc_info()[0]
result_dict[host_ip] = False
print "\n\n\n"
Util.print_host_status(result_dict)