如何使用Fabric将目录复制到远程计算机?

问题描述 投票:76回答:4

我在本地计算机上有一个目录,我想使用Fabric将其复制到远程计算机(并重命名)。我知道我可以使用put()复制文件,但是目录呢。我知道使用scp很容易,但如果可能的话,我更愿意从我的fabfile.py中做到这一点。

python fabric
4个回答
111
投票

您也可以使用put(至少在1.0.0中):

local_path可以是相对或绝对本地文件或目录路径,并且可以包含shell样式通配符,如Python glob模块所理解的。还执行了Tilde扩展(由os.path.expanduser实现)。

见:http://docs.fabfile.org/en/1.0.0/api/core/operations.html#fabric.operations.put


更新:此示例在1.0.0上工作正常(对我而言):

from fabric.api import env
from fabric.operations import run, put

env.hosts = ['[email protected]']

def copy():
    # make sure the directory is there!
    run('mkdir -p /home/frodo/tmp')

    # our local 'testdirectory' - it may contain files or subdirectories ...
    put('testdirectory', '/home/frodo/tmp')

# [[email protected]] Executing task 'copy'
# [[email protected]] run: mkdir -p /home/frodo/tmp
# [[email protected]] put: testdirectory/HELLO -> \
#     /home/frodo/tmp/testdirectory/HELLO
# [[email protected]] put: testdirectory/WORLD -> \
#     /home/frodo/tmp/testdirectory/WORLD
# ...

31
投票

我还会看一下Project Tools模块:fabric.contrib.project Documentation

这有一个upload_project函数,它接受源和目标目录。更好的是,有一个使用rsync的rsync_project函数。这很好,因为它只更新已更改的文件,并且它接受额外的args,如“exclude”,这对于排除.git目录这样做很有用。

例如:

from fabric.contrib.project import rsync_project

def _deploy_ec2(loc):

    rsync_project(local_dir=loc, remote_dir='/var/www', exclude='.git')

4
投票

对于使用Fabric 2的用户,put无法再上传目录,只能上传文件。此外,rsync_project不再是主要Fabric包的一部分。 contrib包已被删除,as explained here。现在,rsync_project已重命名为rsync,您需要安装另一个软件包才能使用它:

pip install patchwork

现在,假设您已经创建了与服务器的连接:

cxn = fabric.Connection('username@server:22')

你可以使用rsync如下:

import patchwork.transfers
patchwork.transfers.rsync(cxn, '/my/local/dir', target, exclude='.git')

有关更多信息,请参阅fabric-patchwork documentation


0
投票

根据TGO的回答,如果您希望在Windows系统上使用它,则需要一个rsync源,例如cygwin。

© www.soinside.com 2019 - 2024. All rights reserved.