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


Python SSHConfig._config方法代码示例

本文整理汇总了Python中paramiko.SSHConfig._config方法的典型用法代码示例。如果您正苦于以下问题:Python SSHConfig._config方法的具体用法?Python SSHConfig._config怎么用?Python SSHConfig._config使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在paramiko.SSHConfig的用法示例。


在下文中一共展示了SSHConfig._config方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: main

# 需要导入模块: from paramiko import SSHConfig [as 别名]
# 或者: from paramiko.SSHConfig import _config [as 别名]
def main(args):
    config = SSHConfig()
    if os.path.isfile(SSH_CONFIG):
        config.parse(open(SSH_CONFIG))
    else:
        print "[+] %s does not exists. Creating an empty one." % SSH_CONFIG
        file(SSH_CONFIG, 'w').write("")

    if args.delete:
        print "[+] delete section Host %s" % args.alias
        config._config = [
            section for section in config._config if
            args.alias not in section['host']]
    else:
        if (args.hostname and args.alias and
           (args.key_path or args.key_from_stdin)):
            if args.key_from_stdin:
                print "[+] read the key from stdin ..."
                fd, key_path = tempfile.mkstemp(suffix='_%s.key' % args.alias)
                for line in sys.stdin:
                    os.write(fd, line)
                os.fsync(fd)
                key_path = copy_key(key_path)
            else:
                key_path = copy_key(args.key_path)
            print "[+] add section Host %s" % args.alias
            # Clean section with the name
            config._config = [
                section for section in config._config if
                args.alias not in section['host']]
            section = section_template
            section['host'] = [args.alias]
            section['config']['hostname'] = args.hostname
            section['config']['identityfile'] = [key_path]
            config._config.append(section)
    print "[+] write the ssh_config file"
    write(config._config)
开发者ID:basejumpa,项目名称:software-factory,代码行数:39,代码来源:gerrit_repl_alias_helper.py


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