当前位置: 首页>>代码示例>>Python>>正文


Python Util.print_host_status方法代码示例

本文整理汇总了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)
开发者ID:huhe56,项目名称:nj-snic,代码行数:32,代码来源:execute_shell_cmd.py


注:本文中的lib.util.Util.print_host_status方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。