码迷,mamicode.com
首页 > 其他好文 > 详细

rsync 跳过Authentication (yes/no)

时间:2015-07-15 23:17:01      阅读:351      评论:0      收藏:0      [点我收藏+]

标签:rsync (yes/no)

写了套gitlab发布,发现新增的3台机器发布代码没成功,于是检查脚本,终于发现问题,

脚本中rsync 推送代码文件时,由于是新增的机器,第一次会提示:

Are you sure you want to continue connecting (yes/no)?

技术分享


知道ssh 有-o PubkeyAuthentication=yes 的参数可以跳过,于是man rsync的参数,发现-e的参数,终于解决 :

rsync -avuP   -e "ssh  -o PubkeyAuthentication=yes   -o stricthostkeychecking=no" ${source_dir}  root@${IP}:${des_dir}

本文出自 “文耀凯的博客” 博客,请务必保留此出处http://wenyaokai.blog.51cto.com/2348901/1674930

rsync 跳过Authentication (yes/no)

标签:rsync (yes/no)

原文地址:http://wenyaokai.blog.51cto.com/2348901/1674930

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!