首页 > 编程 > Python > 正文

Fabric 应用案例

2020-01-04 17:24:51
字体:
来源:转载
供稿:网友

示例1:文件打包,上传与校验
我们时常做一些文件包分发的工作,实施步骤一般是先压缩打包,在批量上传至目标服务器,最后做一致性校验,本案例通过put()方法实现文件的上传,通过对比本地与远程主机文件的md5,最终实现文件一致性校验。

#!/usr/bin/env pythonfrom fabric.api import *from fabric.context_managers import *from fabric.contrib.console import confirmenv.user = 'root'env.hosts = ['192.168.1.23','192.168.1.24']env.password = '123456' @runs_oncedef tar_task(): #本地打包任务函数,只限执行一次  with lcd('/'):    local("tar zcvf auto.tar.gz auto") def put_task():  run('mkdir /data') #上传任务函数  with cd("/data"):    with settings(warn_only=True):      result = put("/auto.tar.gz","/data") #put上传出现异常时继续执行,非中止    if result.failed and not confirm("put file failed, Continue[Y/N]?"):      abort('Aboring file put task!') #出现异常时,确认用户是否继续 def check_task():  with settings(warn_only=True):    lmd5 = local("md5sum /auto.tar.gz",capture=True).split(' ')[0]    rmd5 = run("md5sum /data/auto.tar.gz").split(' ')[0]    if lmd5 == rmd5: #对比本地及远程文件MD5信息      print "ok"    else:      print ERRORdef go():  tar_task()  put_task()  check_task()      

 

 
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表