我正在使用fabric 编写我的rsync 包装器,变量env.host_string 将由execute() 设置以运行任务。要获取 env.host_string,我首先运行('pwd'),然后运行 rsync。
是否可以在某个检查点到达之前确保用户设置 env.hosts,例如条件 src == env.host_string ?
from fabric.api import run, env, task, abort
from string import Template
@task
def sync_to_same_dir(src, path):
env.host_string
cmd_template = Template("""rsync --dry-run -e ssh -avr $user@$src_host:$path/ $path/""")
if path.endswith("/"):
path = path[:-1]
run("pwd") # it's a work around
if src == env.host_string:
abort("cannot rysnc to the same host")
cmd = cmd_template.substitute(path=path, user=env.user, src_host=src)
run(cmd)
我从fabric的源代码中找到了答案。有一个简单的想法:如何根据需要运行检查主机?
@needs_host
def put(local_path=None, remote_path=None, use_sudo=False,
mirror_local_mode=False, mode=None):
"""
Upload one or more files to a remote host.
"""
当用户没有分配任何主机时,我会跟踪需求主机,它会提示询问主机:
No hosts found. Please specify (single) host string for connection:
我们可以将任务重写为:
from fabric.network import needs_host
@task
@needs_host
def the_task_needs_host(): pass