Python的Fabric在本地使用rsync,可能吗?
目前,Fabric 的“rsync_projecct”需要指定用户和主机参数。我在复制[电子邮件受保护]时遇到很多问题,因为它仍然是向我询问 rsync 的密码。我花了几个小时在这上面,想知道是否有一种方法可以使用 rsync [src] [dest] 而无需指定 [user] 和 [host]?或者大家有什么更好的推荐吗?
我之所以喜欢 rsync 胜过其他任何东西,是因为我已经拥有该特定命令的 rsync 文件/文件夹/排除设置。
话又说回来,我可以编写自己的 rsync 命令,对吗?
谢谢。
Currently Fabric's 'rsync_projecct' requires a user and a host parameter to be specified. I'having a lot of issues copying [email protected] because it is still asking me for the password for rsync. I've spent hours on this and am wondering if there is just a way to use the rsync [src] [dest] without having to specify a [user] and [host]? Or do you guys recommend something better?
The reason I like rsync over anything else is because I already have the rsync files/folders/excludes setup for that specific command.
Then again, I could just write my own rsync command right?
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你可以用 local() 输出并以任何你想要的方式使用 rsync 。
you can just local() out and use rsync any way you want to.