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


Python SSHControl.copy_to方法代码示例

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


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

示例1: FakeTarget

# 需要导入模块: from oeqa.utils.sshcontrol import SSHControl [as 别名]
# 或者: from oeqa.utils.sshcontrol.SSHControl import copy_to [as 别名]
class FakeTarget(object):
    def __init__(self, d):
        self.connection = None
        self.ip = None
        self.server_ip = None
        self.datetime = time.strftime('%Y%m%d%H%M%S',time.gmtime())
        self.testdir = d.getVar("TEST_LOG_DIR", True)
        self.pn = d.getVar("PN", True)

    def exportStart(self):
        self.sshlog = os.path.join(self.testdir, "ssh_target_log.%s" % self.datetime)
        sshloglink = os.path.join(self.testdir, "ssh_target_log")
        if os.path.lexists(sshloglink):
            os.remove(sshloglink)
        os.symlink(self.sshlog, sshloglink)
        print("SSH log file: %s" %  self.sshlog)
        self.connection = SSHControl(self.ip, logfile=self.sshlog)

    def run(self, cmd, timeout=None):
        return self.connection.run(cmd, timeout)

    def copy_to(self, localpath, remotepath):
        return self.connection.copy_to(localpath, remotepath)

    def copy_from(self, remotepath, localpath):
        return self.connection.copy_from(remotepath, localpath)
开发者ID:agangidi53,项目名称:openbmc,代码行数:28,代码来源:runexported.py


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